website/src/lib/app.css

58 lines
919 B
CSS
Raw Normal View History

@font-face {
font-family: Comfortaa;
src: url("/Comfortaa.ttf");
font-display: swap;
}
2022-08-04 14:54:22 +05:30
@font-face {
font-family: Inter;
src: url("/Inter.ttf");
font-display: swap;
}
2022-08-04 21:20:02 +05:30
@font-face {
font-family: Raleway;
src: url("/Raleway.ttf");
font-display: swap;
}
html {
--primary: #151515;
--secondary: #252525;
--tertiary: #353535;
2022-08-05 19:31:15 +05:30
--accent-primary: #b59bd8;
--accent-secondary: #b59bd8;
--accent-tertiary: #b59bd8;
2022-08-04 20:00:24 +05:30
--text: #ffffffde;
--grey: #5454547a;
2022-08-04 21:20:02 +05:30
--font-primary: Raleway;
--font-header: Raleway;
}
body {
font-family: var(--font-primary);
background-color: var(--primary);
color: var(--text);
margin: 0;
display: flex;
flex-direction: column;
position: relative;
min-height: 100vh;
line-height: 1.625;
}
main {
padding: 1rem;
}
a {
text-decoration: underline;
color: var(--accent-primary);
text-underline-offset: 5px;
2022-08-05 19:31:15 +05:30
transition: filter 0.25s;
}
2022-08-04 21:20:02 +05:30
a:hover {
filter: brightness(125%);
2022-08-05 19:31:15 +05:30
}