gallery/style/shiny/index.css

108 lines
1.6 KiB
CSS
Raw Normal View History

2020-07-20 16:40:34 -04:00
@import url(base.css);
:root {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
body {
width: 37.5em;
}
header h1::before, header h1::after {
display: inline-block;
}
header h1::before {
content: url(../niss.svg);
padding-right: 0.15em;
height: 1em;
width: 1em;
vertical-align: -0.2em;
}
header h1::after {
content: url(../niss_tongue.svg);
padding-left: 0.15em;
height: 1.05em;
width: 1.05em;
vertical-align: -0.32em;
}
@media screen {
.nsfw::after {
content: url(../18_plus_white.svg);
height: 1em;
width: 1em;
2020-07-24 12:40:16 -04:00
transform: rotate(var(--nsfw-sticker-rotate));
2020-07-20 16:40:34 -04:00
mix-blend-mode: hard-light;
margin-left: 0.3em;
2020-07-20 16:40:34 -04:00
}
}
@media speech {
.nsfw::after {
2020-07-21 04:57:05 -04:00
content: ' (some nsfw)';
2020-07-20 16:40:34 -04:00
}
}
#mutstd-note {
display: flex;
align-items: center;
justify-content: center;
}
#peace-sign {
transform: rotate(15deg);
height: 2em;
padding-left: 0.5em;
}
.list {
display: grid;
margin: 0;
padding: 0;
grid-template-columns: 50% 50%;
grid-gap: 1em 1.5em;
2020-07-20 16:40:34 -04:00
align-items: center;
justify-content: center;
font-size: 175%;
}
.list li {
list-style: none;
text-align: center;
display: grid;
grid-template-columns: auto min-content;
align-items: center;
justify-content: center;
2020-07-20 16:40:34 -04:00
}
.list a {
text-decoration: none;
}
main {
margin: 2em 0;
}
@media (pointer: coarse) {
.list {
font-size: 300%;
grid-template-columns: 100%;
grid-gap: 1em;
}
}
@media not (hover) {
.list a::after {
content: attr(title);
display: block;
font-size: 60%;
}
}