mirror of
https://github.com/Kyren223/website.git
synced 2026-01-04 12:07:43 +00:00
81 lines
1.2 KiB
CSS
81 lines
1.2 KiB
CSS
@import url("../styles/fonts/JetBrainsMono.css");
|
|
|
|
:root {
|
|
--primary: #54d7a9;
|
|
--secondary: #9b7eca;
|
|
--accent: #7ed4fb;
|
|
--extra: #8fcc75;
|
|
--text: #ffffff;
|
|
--alt: #999999;
|
|
--background: #000000;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
background-color: var(--background);
|
|
color: var(--text);
|
|
font-family: "Jetbrains Mono", monospace;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
overflow-y: scroll;
|
|
zoom: 1;
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
body {
|
|
zoom: 0.8;
|
|
}
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
body {
|
|
zoom: 0.7;
|
|
}
|
|
}
|
|
|
|
main {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
grid-template-columns: minmax(200px, 1fr);
|
|
transform: translate(-50%, -50%);
|
|
border: 1px;
|
|
border-style: solid;
|
|
background: var(--background);
|
|
padding: 1.75rem;
|
|
width: 55rem;
|
|
height: 77%;
|
|
max-width: 75%;
|
|
max-height: 80%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
font-weight: 300;
|
|
}
|
|
a:link,
|
|
a:visited,
|
|
a:active {
|
|
background-color: transparent;
|
|
text-decoration: none;
|
|
color: var(--secondary);
|
|
}
|
|
a:hover {
|
|
transition-duration: 0.2s;
|
|
transition-property: color, text-decoration;
|
|
text-decoration: underline;
|
|
color: var(--accent);
|
|
}
|