55 lines
1.2 KiB
CSS
55 lines
1.2 KiB
CSS
@font-face {
|
|
font-family: "Nunito Sans";
|
|
src:
|
|
url('./fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype-variations'),
|
|
url('./fonts/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
|
|
font-weight: 100 1000;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Nunito Sans";
|
|
src:
|
|
url('./fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype-variations'),
|
|
url('./fonts/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
|
|
font-weight: 100 1000;
|
|
font-style: italic;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: "Nunito Sans", 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
font-weight: bold;
|
|
/* font-family: 'Segoe UI', sans-serif; */
|
|
/* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
|
|
/* font-family:Arial, Helvetica, sans-serif; */
|
|
/* font-family: Verdana, Geneva, Tahoma, sans-serif; */
|
|
font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
|
|
}
|
|
|
|
svg:focus,
|
|
g:focus,
|
|
path:focus {
|
|
outline: none;
|
|
outline-style: none;
|
|
}
|
|
|
|
@import "tailwindcss"; |