This commit is contained in:
2025-09-02 19:41:06 +03:00
commit d23055a0bf
17 changed files with 1608 additions and 0 deletions

38
res/css/global.css Normal file
View File

@@ -0,0 +1,38 @@
:root {
--bg-color-ll: #535353;
--bg-color-l: #434343;
--bg-color: #323232;
--bg-color-d: #292929;
--bg-color-dd: #212121;
}
body {
background: var(--bg-color);
font-family: Arial, Helvetica, sans-serif;
}
#topnav {
width: 100%;
height: 10%;
background: var(--bg-color-l);
display: flex;
}
.topnav_button {
padding: 1rem 3rem;
margin: 3px 10px;
background: var(--bg-color-ll);
border: 2px solid var(--bg-color);
border-radius: 10px;
}
.topnav_button a {
text_decoration: none;
}
.topnav_button:hover {
cursor: pointer
}