@tailwind base;
|
@tailwind components;
|
@tailwind utilities;
|
|
.rich-text__container ul {
|
list-style: square !important;
|
padding-left: 20px !important;
|
margin-bottom: 12px;
|
}
|
|
.rich-text__container h5 {
|
margin: 12px 0;
|
}
|
|
.rich-text__container ol {
|
list-style: auto !important;
|
padding-left: 20px !important;
|
}
|
a {
|
color: #0000ee;
|
text-decoration: underline;
|
}
|
|
|
/* @layer components {
|
.btn-blue {
|
@apply py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75;
|
}
|
} */
|
|
@layer base {
|
h1 {
|
font-weight: 600;
|
font-size: 46px;
|
margin-bottom: 16px;
|
color: #141e30;
|
}
|
h2 {
|
font-weight: 600;
|
font-size: 40px;
|
margin-bottom: 12px;
|
color: #141e30;
|
}
|
|
h3 {
|
font-weight: 600;
|
font-size: 36px;
|
color: #141e30;
|
}
|
|
/* desc */
|
h4{
|
color: #141e30;
|
font-size: 24px;
|
font-weight: 300;
|
}
|
|
h5{
|
color: #141e30;
|
font-size: 18px;
|
line-height: 180%;
|
font-weight: 300;
|
}
|
|
/* question */
|
h6{
|
color: #141e30;
|
font-size: 16px;
|
line-height: 160%;
|
font-weight: 300;
|
}
|
}
|