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
|
@import url('https://proxy.due.moe/?q=https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://proxy.due.moe/?q=https://fonts.googleapis.com/css?family=Overpass:400,600,700,800');
.categories-grid {
display: flex;
flex-wrap: wrap;
row-gap: 1.5em;
column-gap: 1.5em;
padding: 2%;
justify-content: center;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
background-color: #0b1622;
}
.categories-grid b {
font-family: Overpass, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: 600;
}
.category-grid,
.image-grid {
background-color: #151f2e;
border-radius: 4px;
color: rgb(159, 173, 189);
}
.pure-category,
.avatar-grid {
padding: 1.5%;
}
.category-grid {
display: grid;
}
.image-grid {
display: flex;
column-gap: 1em;
flex-wrap: wrap;
}
.image-grid img {
width: 6em;
height: auto;
border-radius: 3px;
}
.categories-grid a {
text-decoration: none;
color: unset;
}
.transparent .categories-grid {
background-color: transparent !important;
}
.light-theme .categories-grid {
background-color: #edf1f5;
}
.light-theme .category-grid {
background-color: #fafafa;
color: rgb(92, 114, 138);
}
.light-theme .image-grid {
background-color: #fafafa;
color: rgb(92, 114, 138);
}
ol {
margin: 0 !important;
}
#watermark {
color: rgb(61, 180, 242);
}
#wrapped-final {
height: auto;
width: 50%;
}
#list-container {
display: flex;
gap: 1rem;
flex-wrap: wrap;
align-items: start;
}
.list {
flex-grow: 1;
flex-basis: 1%;
}
#wrapped {
overflow-y: scroll;
}
|