List of themes made for the Roundabout software

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

 themesxml.css

View raw Download
text/plain • 1.32 kiB
ASCII text, with very long lines (303)
        
            
1
@import url("gully.css");
2
3
themes {
4
display: flex;
5
background-color: #101010;
6
font-family: "Gully";
7
}
8
9
theme {
10
display: inline-block;
11
text-align: center;
12
width: fit-content;
13
margin: 15px
14
}
15
16
theme title,
17
theme author,
18
theme uri {
19
color: white;
20
display: block;
21
}
22
23
theme uri,
24
theme author {
25
background: linear-gradient( 90deg, rgb(255, 150, 150) 0%, rgb(255, 194, 102) 10%, rgb(244, 255, 107) 20%, rgb(176, 253, 173) 30%, rgb(155, 255, 254) 40%, rgb(192, 246, 255) 50%, rgb(96, 172, 255) 60%, rgb(138, 79, 255) 70%, rgb(217, 110, 255) 80%, rgb(255, 126, 237) 90%, rgb(255, 145, 145) 100% );
26
background-clip: text;
27
-webkit-text-fill-color: transparent;
28
text-decoration: underline #551a8b 2px;
29
cursor: help;
30
}
31
32
theme title::before {
33
content: "Theme:";
34
margin-right: 5px;
35
display: inline-block;
36
color: white;
37
}
38
theme author::before {
39
content: "Author:";
40
background: #fff;
41
background-clip: text;
42
display: inline-block;
43
margin-right: 5px;
44
}
45
46
theme author::after {
47
display: inline-block;
48
background: #fff;
49
background-clip: text;
50
margin-left: 5px;
51
content: "<" attr(uri) ">";
52
}
53
54
theme uri::before {
55
display: inline-block;
56
background: #fff;
57
background-clip: text;
58
margin-right: 5px;
59
content: "Theme CSS (relative to /themes/):";
60
}
61