comfycamp/assets/css/app.css

55 lines
623 B
CSS
Raw Normal View History

@import "./core_components.css";
@import "./flash.css";
:root {
--bg: #13151a;
--accent: #b283e5;
}
html {
font-family: Georgia, serif;
background-color: var(--bg);
color: white;
font-size: 16px;
}
*::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;
}