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

 style.css

View raw Download
text/plain • 1.68 kiB
ASCII text
        
            
1
@import url("willow.css");
2
@import url("redhatmono.css");
3
@import url("gully.css");
4
5
/* Colors */
6
7
:root {
8
--primary: #101010;
9
--secondary: #f9a911;
10
--teriary: #efee00;
11
12
--primary-text: #fff;
13
--primary-code: #1f1f1f;
14
}
15
16
/* Styles */
17
18
body {
19
background-color: var(--primary);
20
color: var(--primary-text);
21
font-family: "Gully";
22
width: min(896px, 100vw);
23
margin: 0 auto;
24
padding: 35px;
25
min-height: calc(100% - 70px);
26
box-shadow: 0px 0px 50px #000;
27
}
28
29
:root {
30
font-family: "Gully";
31
}
32
33
html {
34
background-image: url("./background.webp");
35
background-color: #FFF;
36
height: 100%;
37
}
38
39
:is(h1, h2, h3, h4, h5, h6) {
40
font-family: "Willow";
41
}
42
43
:any-link {
44
background: linear-gradient(
45
90deg,
46
rgb(255, 150, 150) 0%,
47
rgb(255, 194, 102) 10%,
48
rgb(244, 255, 107) 20%,
49
rgb(176, 253, 173) 30%,
50
rgb(155, 255, 254) 40%,
51
rgb(192, 246, 255) 50%,
52
rgb(96, 172, 255) 60%,
53
rgb(138, 79, 255) 70%,
54
rgb(217, 110, 255) 80%,
55
rgb(255, 126, 237) 90%,
56
rgb(255, 145, 145) 100%
57
);
58
background-clip: text;
59
-webkit-text-fill-color: transparent;
60
}
61
62
th,
63
td {
64
text-align: center;
65
}
66
67
#ThemeList {
68
padding: 0;
69
margin: 0;
70
}
71
72
#ThemeList li {
73
width: fit-content;
74
display: inline-block;
75
list-style: none;
76
77
}
78
79
code {
80
background-color: var(--primary-code);
81
display: inline-block;
82
font-family: "RH Mono";
83
}
84
85
code:has(pre) {
86
display: block;
87
padding: 5px;
88
}
89
90
[aria-label=breadcrumbs] ol {
91
padding: 0;
92
}
93
94
[aria-label=breadcrumbs] li {
95
list-style: none;
96
display: inline-block;
97
}
98
99
[aria-label=breadcrumbs] li + li::before {
100
content: " / ";
101
}
102