Homepage: https://theme.roundabout-host.com

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 themes.css

View raw Download
text/plain • 803 B
ASCII text
        
            
1
::backdrop {
2
background: #0005;
3
backdrop-filter: blur(3px);
4
}
5
6
button {
7
--color1: #19004B;
8
--color2: #00194B;
9
--color3: #000064;
10
background: linear-gradient(
11
90deg,
12
var(--color1),
13
var(--color2),
14
var(--color3)
15
);
16
color: var(--primary);
17
border: none;
18
padding: 3px 6px;
19
border-radius: 5px;
20
transition: 500ms color, 500ms background;
21
}
22
23
24
:any-link:hover {
25
--color1: #35005B;
26
--color2: #00355B;
27
--color3: #000084;
28
}
29
30
:any-link:active {
31
--color1: #4B0019;
32
--color2: #4B1900;
33
--color3: #640000;
34
}
35
36
.theme-list-popover {
37
border: none;
38
header {
39
display: flex;
40
padding: 5px;
41
border-bottom: 1px solid var(--primary-text);
42
strong {
43
flex: 1;
44
}
45
}
46
}
47