Files
no-copy-frontend/src/app/styles/globals.css
T

55 lines
1.2 KiB
CSS
Raw Normal View History

2025-12-28 13:09:28 +07:00
@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;
}
2025-11-24 18:24:36 +07:00
html,
body {
2025-11-24 18:52:32 +07:00
overflow-x: hidden;
2025-11-24 18:24:36 +07:00
}
body {
2025-12-28 13:09:28 +07:00
font-family: "Nunito Sans", 'Segoe UI', sans-serif;
2025-11-24 18:24:36 +07:00
}
* {
2025-11-24 18:52:32 +07:00
box-sizing: border-box;
2025-11-24 18:24:36 +07:00
}
a {
2025-11-24 18:52:32 +07:00
text-decoration: none;
2025-11-24 18:24:36 +07:00
}
2025-12-05 16:19:13 +07:00
h1,
h2,
h3,
h4 {
font-weight: bold;
2025-12-28 13:09:28 +07:00
/* 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;
2025-12-05 16:19:13 +07:00
}
2025-12-18 13:36:56 +07:00
svg:focus,
g:focus,
path:focus {
outline: none;
outline-style: none;
}
2025-11-25 17:13:16 +07:00
@import "tailwindcss";