umbrella.haus/style.css

118 lines
1.8 KiB
CSS

@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: auto;
src: url("/assets/fonts/Inter400-Latin.woff2") format("woff2");
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: auto;
src: url("/assets/fonts/Inter500-Latin.woff2") format("woff2");
}
:root {
font-family: "Inter", sans-serif;
}
body {
background-color: #202124;
color: #ccc;
margin: 0;
}
.page {
max-width: 800px;
margin: auto;
padding: 20px 40px;
}
.section {
background-color: rgba(255, 255, 255, 0.05);
margin-bottom: 20px;
border-left: 4px solid #5e81ac;
}
.section h2 {
font-size: 18px;
font-weight: 600;
color: #fff;
padding: 8px 16px;
margin: 0;
background-color: transparent;
border-left: none;
}
p {
background-color: #49688e;
padding: 16px 32px;
color: #fff;
text-align: center;
}
p > a {
color: #fff;
font-weight: 600
}
h1 {
font-size: 42px;
color: #eee;
font-weight: 600;
margin-bottom: 8px;
line-height: 32px;
}
h1 > a {
font-size: 22px;
color: #aaa
}
ul {
padding: 8px 32px 16px;
margin: 0;
}
li {
font-size: 16px;
font-weight: 400;
margin-bottom: 8px;
color: #ccc;
}
li > a {
color: #5e81ac;
font-weight: 600;
}
code {
background-color: rgba(94, 129, 172, 0.2);
color: #5e81ac;
padding: 1px 6px;
border-radius: 4px;
font-family: "Courier New", monospace;
}
footer {
text-align: center;
padding: 20px;
font-style: italic;
}
footer a {
color: #ccc;
}
a {
color: #5e81ac;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #81a1c1;
text-decoration: underline;
}