phantasmobile/app/static/css/site.scss

74 lines
1.2 KiB
SCSS
Raw Normal View History

2023-07-16 05:56:14 +00:00
header, footer {
max-width: 1000px;
padding-top: 16px;
margin: auto;
}
header {
a {
color: yellow;
text-decoration: none;
}
}
.index {
padding-top: 16px;
.item {
border-bottom: 1px solid blueviolet;
padding-bottom: 4px;
margin-bottom: 8px;
a {
text-decoration: none;
color: white;
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;
}
}
2023-07-25 19:03:54 +00:00
.burger {
cursor: pointer;
padding-left: 4px;
}
nav.overlay {
position: absolute;
width: 100%;
height: 100vh;
top: 42px;
left: 0;
background: rgb(16, 16, 16);
opacity: 0;
z-index: 100;
padding: 4px;
display: none;
&.active {
display: block;
opacity: 0.9;
}
}