37 lines
723 B
CSS
37 lines
723 B
CSS
@font-face {
|
|
font-family: 'FantasqueSansMNerdFont';
|
|
src: url('/public/assets/fonts/FantasqueSansMNerdFont-Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--background-color: rgb(255, 255, 255);
|
|
--text-color: #333;
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
--background-color: rgb(0, 0, 0);
|
|
--text-color: #f5f5f5;
|
|
}
|
|
|
|
html {
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-family: 'FantasqueSansMNerdFont', sans-serif;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.snowflake {
|
|
position: absolute;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|