blob: 5331ff7cb0520a38a2db9f0f638d29425b5ee86b (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
body {
display: flex;
flex-direction: column;
background-color: black;
color: #eee;
margin: 1em;
font-family: sans-serif;
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
nav img {
height: 2em;
}
nav .menu {
display: flex;
align-items: center;
justify-content: space-between;
}
nav .site {
display: flex;
flex-wrap: wrap;
font-size: larger
}
nav .webring {
display: flex;
flex-wrap: wrap;
align-items: center;
}
nav .webring .ring {
font-weight: bold;
}
nav .webring div {
display: flex;
margin: 0 1em 0 0;
align-items: center;
}
nav a {
margin: 0 0.5em;
}
nav .current {
color: #eee;
font-weight: bold;
}
a {
color: #888;
transition: 0.5s ease;
text-decoration: none;
}
a:hover {
color: white;
}
td {
padding-right: 1em;
font-size: larger;
}
img,
video {
max-height: 80vh;
max-width: 90vw;
object-fit: contain;
margin: 0 auto
}
audio {
width: 12.5em;
height: 2.5em;
}
audio::-webkit-media-controls-panel {
background-color: #aaa;
}
iframe {
width: 100%;
height: 90vh;
border: none;
}
footer {
margin-top: 3em
}
.gallery {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
margin: 1em;
}
.gallery img {
margin: 0.25em;
}
/* .thumb { */
/* margin: 0.25em; */
/* } */
.cover {
max-height: min(50vh, 90vw);
max-width: min(50vh, 90vw);
margin-left: 0;
display: block;
padding: 1em 0;
}
.slide {
display: flex;
flex-direction: column;
margin-top: 2em;
}
.slidenav {
display: flex;
justify-content: space-between;
align-items: center;
}
.navarrow {
font-weight: bold;
font-size: 2em;
}
|