118 lines
2.1 KiB
SCSS
118 lines
2.1 KiB
SCSS
:root {
|
|
--fg: rgb(240, 240, 240);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "wrong font";
|
|
src: url("https://files.pad.ma/ttf/wrongfont.woff") format("woff");
|
|
}
|
|
header, footer {
|
|
max-width: 1000px;
|
|
padding-top: 16px;
|
|
margin: auto;
|
|
}
|
|
header {
|
|
width: 100%;
|
|
a {
|
|
color: yellow;
|
|
text-decoration: none;
|
|
font-family: "wrong font";
|
|
font-size: 24px;
|
|
letter-spacing: 1px;
|
|
}
|
|
display: flex;
|
|
div {
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
line-height: 1;
|
|
}
|
|
.burger {
|
|
cursor: pointer;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.index {
|
|
padding-top: 16px;
|
|
.item {
|
|
border-bottom: 1px solid blueviolet;
|
|
padding-bottom: 4px;
|
|
margin-bottom: 8px;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: var(--fg);
|
|
h1 {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
h1 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
h1, .info, .comments {
|
|
}
|
|
|
|
.image {
|
|
padding-top: 4px;
|
|
width: 100%;
|
|
img {
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
.content {
|
|
max-width: 1000px;
|
|
margin: auto;
|
|
}
|
|
}
|
|
.archive {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
nav.overlay {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
max-width: 1000px;
|
|
margin: auto;
|
|
background: rgb(16, 16, 16);
|
|
opacity: 0;
|
|
z-index: 100;
|
|
display: none;
|
|
&.active {
|
|
display: flex;
|
|
flex-direction: column;
|
|
opacity: 0.9;
|
|
}
|
|
.about {
|
|
padding: 4px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
flex-grow: 1;
|
|
//white-space: pre-line;
|
|
}
|
|
.user {
|
|
padding: 4px;
|
|
padding-bottom: 8px;
|
|
}
|
|
}
|
|
|
|
.now {
|
|
background: lightyellow;
|
|
color: black;
|
|
padding: 8px;
|
|
opacity: 0.8;
|
|
}
|