2024-08-26 22:10:51 +05:00
|
|
|
@import "./components.css";
|
2024-07-09 23:07:57 +05:00
|
|
|
@import "./flash.css";
|
2024-05-27 12:53:37 +05:00
|
|
|
|
2024-07-06 21:25:42 +05:00
|
|
|
:root {
|
|
|
|
--bg: #13151a;
|
|
|
|
--accent: #b283e5;
|
2024-08-25 23:15:33 +05:00
|
|
|
--input-bg: #28253c;
|
|
|
|
--input-border: #4c4c6d;
|
2024-07-06 21:25:42 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-family: Georgia, serif;
|
|
|
|
background-color: var(--bg);
|
|
|
|
color: white;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2024-08-16 00:40:09 +05:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2024-07-06 21:25:42 +05:00
|
|
|
*::selection {
|
|
|
|
background-color: var(--accent);
|
|
|
|
color: var(--bg);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--accent);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-top: 36px;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header,
|
|
|
|
main,
|
|
|
|
footer {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2024-07-09 21:21:17 +05:00
|
|
|
|
2024-07-06 21:25:42 +05:00
|
|
|
.limiter {
|
|
|
|
max-width: 800px;
|
|
|
|
width: 100%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2024-07-09 23:07:57 +05:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
2024-07-10 01:20:19 +05:00
|
|
|
|
|
|
|
footer {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-list {
|
|
|
|
margin-top: 16px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link-list a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
2024-07-21 22:03:50 +05:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
display: flex;
|
|
|
|
gap: 16px;
|
|
|
|
padding-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .space {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|