48 lines
931 B
CSS
48 lines
931 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
|
|
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
|
|
|
|
* {
|
|
font-weight: 400;
|
|
box-sizing: border-box;
|
|
font-family: "Abel", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
article hr {
|
|
@apply mb-4 mt-4;
|
|
}
|
|
|
|
article {
|
|
@apply px-6 md:px-8 py-6 w-full relative bg-white;
|
|
}
|
|
|
|
article h1 {
|
|
@apply text-4xl font-normal my-4;
|
|
}
|
|
|
|
article h2 {
|
|
@apply text-2xl font-normal my-4;
|
|
}
|
|
|
|
article h3 {
|
|
@apply text-xl font-normal my-2;
|
|
}
|
|
|
|
article a {
|
|
@apply text-blue-700 font-medium text-lg;
|
|
}
|
|
|
|
article select {
|
|
@apply rounded-lg px-2 py-1.5 outline-none;
|
|
}
|
|
|
|
.checkbox {
|
|
@apply h-5 w-4 checkbox-secondary;
|
|
} |