blob: 5695355567560b4f845b39a24f6e36ce325848c1 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#plunt {
display: grid;
grid-template-columns: 1fr min-content;
column-gap: 1rem;
margin: 1rem 0;
#plunt-intro {
margin-bottom: 1rem;
grid-column: 1 / 3;
}
p {
text-align: justify;
margin: 0;
grid-column: 1 / 2;
}
div>p {
margin-bottom: 1rem;
}
div>p:last-of-type {
margin-bottom: 0;
}
img {
image-rendering: pixelated;
}
#pluntbox {
position: relative;
display: flex;
flex-direction: column;
justify-content: end;
grid-column: 2 / 3;
}
#pluntboxbox {
display: flex;
position: relative;
justify-content: center;
}
#loving {
display: none;
position: absolute;
top: 0;
right: 0
}
}
|