blob: 8b57f588eb9d59ea72d81f4c04f85e67edaf2739 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#container {
width: 100%;
height: 100vh;
overflow-y: auto;
display: grid;
gap: 10px;
padding: 10px;
padding-bottom: 50%;
}
#container sfw-image {
margin: auto;
}
#subtitle {
text-align: center;
color: #7e8fa8;
font-size: 0.8em;
font-weight: lighter;
padding-top: 10px;
}
#subtitle i {
font-family: 'Pacifico';
font-style: normal;
color: var(--fg-disabled);
}
#date {
font-size: 1.2em;
font-weight: bold;
background: #efefef99;
backdrop-filter: blur(10px);
padding: 10px;
border-radius: var(--border-radius);
box-shadow: #223223aa 1px 1px 4px;
}
|