160 lines
2.8 KiB
CSS
160 lines
2.8 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
.poppins-thin {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 100;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-extralight {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 200;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-light {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 300;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-regular {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-medium {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-semibold {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-bold {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-extrabold {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 800;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-black {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 900;
|
|
font-style: normal;
|
|
}
|
|
|
|
.poppins-thin-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 100;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-extralight-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 200;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-light-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 300;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-regular-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-medium-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 500;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-semibold-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-bold-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-extrabold-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 800;
|
|
font-style: italic;
|
|
}
|
|
|
|
.poppins-black-italic {
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 900;
|
|
font-style: italic;
|
|
}
|
|
|
|
.wmde-markdown ol {
|
|
list-style: auto !important;
|
|
}
|
|
.wmde-markdown li {
|
|
list-style: auto !important;
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
@apply text-sm md:text-base font-poppins;
|
|
}
|
|
|
|
|
|
.loadingspinner {
|
|
pointer-events: none;
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
border: 0.4em solid transparent;
|
|
border-color: #eee;
|
|
/* border-top-color: #00BDFE; */
|
|
border-radius: 50%;
|
|
outline: none;
|
|
animation: loadingspin 1s linear infinite;
|
|
@apply border-t-primary
|
|
}
|
|
|
|
@keyframes loadingspin {
|
|
100% {
|
|
transform: rotate(360deg)
|
|
}
|
|
}
|
|
|
|
.body-loading {
|
|
border: none;
|
|
overflow: hidden;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|