55 lines
870 B
CSS
55 lines
870 B
CSS
|
@import url(fonts.css);
|
||
|
|
||
|
:root {
|
||
|
--background-color: black;
|
||
|
--selection-color: #111;
|
||
|
--font-color: #eee;
|
||
|
color: var(--font-color);
|
||
|
background-color: var(--background-color);
|
||
|
font-family: "Inter Tight", sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
justify-content: center;
|
||
|
margin-bottom: 48px;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
background-color: var(--background-color);
|
||
|
margin: 4px;
|
||
|
border: 1px solid #444;
|
||
|
border-radius: 16px;
|
||
|
transition: 200ms;
|
||
|
}
|
||
|
|
||
|
.card:hover {
|
||
|
background-color: var(--selection-color);
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin: 8px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: var(--font-color);
|
||
|
}
|
||
|
|
||
|
a.card {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.footer > a {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
padding: 14px 0;
|
||
|
text-align: center;
|
||
|
background-color: #000a;
|
||
|
backdrop-filter: blur(8px);
|
||
|
}
|