gallery/style/shiny/single.css

277 lines
4.5 KiB
CSS
Raw Normal View History

2020-07-20 16:40:34 -04:00
@import url(base.css);
2020-10-06 16:07:39 -04:00
@import url(nsfw-warning.css);
2021-03-12 23:28:43 -05:00
@import url(pkmn.css);
2020-07-20 16:40:34 -04:00
:root {
--image-width: 1000px;
2024-08-04 10:48:13 -04:00
--border-thickness: 2px;
2020-07-20 16:40:34 -04:00
}
2023-08-06 00:12:29 -04:00
body {
display: grid;
min-height: 100vh;
}
2020-10-06 16:07:39 -04:00
.page {
2020-07-23 13:59:07 -04:00
max-width: var(--image-width);
2023-08-06 00:12:29 -04:00
align-self: center;
2020-07-23 13:59:07 -04:00
}
2020-07-20 16:40:34 -04:00
#mainfig {
margin: 1em auto;
width: min-content;
position: relative;
overflow: hidden;
2022-12-29 21:19:33 -05:00
border: var(--border-thickness) solid var(--border-col);
2020-07-20 16:40:34 -04:00
box-shadow: var(--text-shadow);
2020-07-24 08:23:12 -04:00
background: hsl(340, 45%, 65%);
2020-07-20 16:40:34 -04:00
}
2020-08-03 17:06:19 -04:00
#mainfig:focus-within {
box-shadow: var(--focus-box);
}
2020-07-20 16:40:34 -04:00
#mainimg {
display: block;
}
#cw {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background: hsl(330deg, 20%, 36%);
display: flex;
align-items: center;
justify-content: center;
2020-08-03 13:38:45 -04:00
cursor: pointer;
2020-07-20 16:40:34 -04:00
}
#cw-text {
font-size: 200%;
2020-09-13 20:37:27 -04:00
font-weight: 700;
2020-07-20 16:40:34 -04:00
color: hsl(330deg, 100%, 90%);
text-shadow: none;
2022-08-16 21:22:13 -04:00
transform: rotate(-15deg);
2020-07-20 16:40:34 -04:00
background: hsl(330deg, 40%, 16%);
padding: 0.25em 0.5em;
border-radius: 0.5em;
}
2024-07-07 16:08:14 -04:00
#cw-text b { font-weight: 900; }
2020-09-13 20:35:56 -04:00
#cw-text::before {
content: 'cw: ';
font-weight: 600;
}
2020-07-20 16:40:34 -04:00
2020-08-30 12:45:13 -04:00
@supports (filter: opacity(65%) blur(50px)) {
2020-08-30 10:47:25 -04:00
#cw ~ * {
2020-08-30 12:45:13 -04:00
filter: opacity(65%) blur(50px);
2020-08-30 10:47:25 -04:00
}
#cw {
/* it doesn't matter if this is unsupported because
* either way the thing will be hidden */
mix-blend-mode: multiply;
}
2020-07-20 16:40:34 -04:00
}
2020-09-25 17:08:44 -04:00
#date { text-transform: lowercase; }
#info {
2020-07-20 16:40:34 -04:00
display: grid;
2024-07-10 09:30:37 -04:00
grid-template-columns: 1fr 5fr;
2024-07-07 16:00:44 -04:00
grid-column-gap: 1em;
2020-07-20 16:40:34 -04:00
align-items: baseline;
}
@media not speech {
.info-section {
display: contents;
}
}
#info figure {
margin: 0.25em auto;
}
#info figure img {
max-width: 100%;
}
#info .light-bg {
background: hsl(0deg, 0%, 100%, 75%);
padding: 5px;
border-radius: 8px;
}
#info .floating {
float: right;
2020-08-28 16:27:09 -04:00
margin-left: 0.8em;
max-width: 40%;
}
2021-06-05 01:34:59 -04:00
#info .floating.left {
float: left;
}
2021-03-12 23:28:22 -05:00
#info .shaped {
/* maybe one day... */
/* shape-outside: attr(src url); */
shape-margin: 1em;
margin-right: -1em;
2021-03-14 01:40:23 -05:00
filter: drop-shadow(5px 5px 8px #0006);
2021-03-12 23:28:22 -05:00
}
2024-07-10 09:30:37 -04:00
#info h2 {
text-align: right;
}
2021-03-12 23:28:22 -05:00
#info h2, #info ul, #info ol, #info p, #info dl, #info details {
2021-11-21 05:52:09 -05:00
margin: 0.35em 0;
2020-07-20 16:40:34 -04:00
}
2021-03-12 23:28:22 -05:00
#info details > * {
margin-left: 0;
}
2020-09-19 01:51:52 -04:00
#updates dl {
display: grid;
grid-template-columns: min-content auto;
2024-07-07 16:00:44 -04:00
grid-gap: 0.5em;
2020-09-19 01:51:52 -04:00
align-items: baseline;
}
#updates dt {
font-size: 80%;
font-weight: 700;
grid-area: auto / 1;
}
#updates dd {
grid-area: auto / 2;
}
2020-09-25 17:08:44 -04:00
#updates .q {
font-weight: 500;
}
2020-09-19 01:51:52 -04:00
.updated {
font-size: 90%;
font-style: italic;
}
2020-07-20 16:40:34 -04:00
footer {
text-align: center;
margin-top: 1em;
}
@media (pointer: coarse) {
2020-07-23 13:59:07 -04:00
footer {
font-size: 150%;
}
2020-07-20 16:40:34 -04:00
}
2021-08-23 10:35:36 -04:00
#alts {
margin: 1.5em 0;
text-align: center;
2021-09-11 11:18:48 -04:00
display: grid;
2024-07-07 16:00:44 -04:00
grid-gap: 0.5em;
2022-12-26 16:04:57 -05:00
grid-template-columns: minmax(auto, 10em) auto minmax(auto, 10em);
2021-09-11 11:18:48 -04:00
}
2022-12-26 16:04:57 -05:00
#alts.cat :is(h3, ul) { margin: 0; }
2021-09-11 11:18:48 -04:00
#alts section {
display: contents;
}
2021-08-23 10:35:36 -04:00
#alts h3 {
font-weight: 600;
display: inline;
padding-right: 0.5em;
2021-09-11 11:18:48 -04:00
text-align: right;
2022-12-26 16:04:57 -05:00
grid-area: auto / 1 / auto / auto;
2021-09-11 11:18:48 -04:00
}
2022-12-26 16:04:57 -05:00
#alts ul {
2021-09-11 11:18:48 -04:00
display: inline flex;
2022-12-26 16:04:57 -05:00
grid-area: auto / 2 / auto / auto;
}
.cat ul { justify-content: start; }
#skipAllDiv {
align-self: start;
justify-content: end;
grid-area: 1 / 3 / auto / auto;
2021-08-23 10:35:36 -04:00
}
2022-12-29 21:19:33 -05:00
2024-07-07 08:09:38 -04:00
#tags ul, #links ul {
2022-12-29 21:19:33 -05:00
padding: 0;
2024-07-07 08:09:38 -04:00
display: flex;
flex-flow: wrap row;
2022-12-29 21:19:33 -05:00
}
2024-07-07 08:09:38 -04:00
#tags li, #links li {
2022-12-29 21:19:33 -05:00
display: inline;
margin-right: 0.75em;
2024-07-07 08:09:38 -04:00
white-space: nowrap;
2022-12-29 21:19:33 -05:00
}
.chost, .toot {
--avatar-size: 4em;
display: grid;
grid-template: 'avatar user' 1lh
'avatar post' auto / var(--avatar-size) 1fr;
grid-gap: 5px 15px;
margin: 0;
}
:is(.chost, .toot) .user {
grid-area: user;
font-weight: 800;
}
:is(.chost, .toot) :is(.user a, a.user) {
font-weight: 800;
text-decoration: none;
}
:is(.chost, .toot) .username {
margin-left: 1em;
font-size: 90%;
font-weight: 500;
}
:is(.chost, .toot) .post { grid-area: post; }
:is(.chost, .toot) .avatar { grid-area: avatar; }
:is(.chost, .toot) :is(.avatar img, img.avatar) {
height: var(--avatar-size); width: var(--avatar-size);
border-radius: 1000em;
}
.chost .squircle {
mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDBDMjAgMCAwIDIwIDAgMTAwczIwIDEwMCAxMDAgMTAwIDEwMC0yMCAxMDAtMTAwUzE4MCAwIDEwMCAweiIvPjwvc3ZnPg==);
mask-size: contain;
mask-repeat: no-repeat;
mask-position: center;
border-radius: 0;
}
:is(.chost, .toot) h1 {
margin: 0 0 0.5em;
font-size: 150%;
font-weight: 700;
}
:is(.chost, .toot) + :is(.chost, .toot) { margin-top: 1.5em; }