106 lines
1.2 KiB
CSS
106 lines
1.2 KiB
CSS
@import "./components.css";
|
|
@import "./flash.css";
|
|
|
|
:root {
|
|
--bg: #13151a;
|
|
--accent: #b283e5;
|
|
--input-bg: #28253c;
|
|
--input-border: #4c4c6d;
|
|
}
|
|
|
|
html {
|
|
font-family: Georgia, serif;
|
|
background-color: var(--bg);
|
|
color: white;
|
|
font-size: 16px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*::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;
|
|
}
|
|
|
|
.limiter {
|
|
max-width: 800px;
|
|
width: 100%;
|
|
margin: auto;
|
|
}
|
|
|
|
.icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.navbar {
|
|
display: flex;
|
|
gap: 16px;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.navbar .space {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #333;
|
|
padding: 5px 8px;
|
|
}
|
|
|
|
code {
|
|
background-color: #282735;
|
|
padding: 2px 5px;
|
|
border-radius: 4px;
|
|
}
|