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
|
/*
the only reason some of these properties have an !important property
is for it to overwrite Thunderstore's CSS in the preview <webview>
*/
:root {
--red: 199, 119, 127 !important;
--red2: 181 97 105;
--blue: 129, 161, 193;
--blue2: 139, 143, 185;
--orange: 213, 151, 131;
--orange2: 197 129 107;
--padding: 25px;
--bg: rgba(0, 0, 0, 0.5);
--selbg: rgba(80, 80, 80, 0.5);
--redbg: linear-gradient(45deg, rgb(var(--red)), #FA4343);
--bluebg: linear-gradient(45deg, rgb(var(--blue)), #7380ED);
}
body, button, input {
font-family: "Roboto", sans-serif !important;
}
body, button, img, a {
user-select: none;
-webkit-user-drag: none;
}
a {
text-decoration: none !important;
color: rgb(var(--red)) !important;
transition: filter 0.2s ease-in !important;
}
a.disabled {
opacity: 0.5;
pointer-events: none;
}
a:hover {
filter: brightness(80%) !important;
}
input:disabled {
opacity: 0.5;
}
::-webkit-scrollbar {
width: 18px !important;
}
::-webkit-scrollbar-track {
border-radius: 10px !important;
background: transparent !important;
}
::-webkit-scrollbar-thumb {
border: 5px solid transparent;
border-radius: 10px !important;
box-shadow: rgb(var(--red)) 0px 0px 10px 10px inset;
}
::selection {
color: black !important;
background: rgb(var(--red)) !important;
}
.bg-blue {background: rgb(var(--blue)) !important}
.bg-blue2 {background: rgb(var(--blue2)) !important}
.bg-orange {background: rgb(var(--orange)) !important}
.bg-orange2 {background: rgb(var(--orange2)) !important}
.bg-red {background: rgb(var(--red)) !important}
.bg-red2 {background: rgb(var(--red2)) !important}
|