forked from timothyfraser/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
45 lines (35 loc) · 1.02 KB
/
styles.css
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
/* Apply red color to text inside the LC1, LC2, LC3, and LC4 sections */
#LC1 *, #LC2 *, #LC3 *, #LC4 *, #LC5 *, #LC6 *, #LC7 *, #LC8 *, #LC9 *, #LC10 * {
color: #648FFF;
}
#LC1 > h2, #LC2 > h2, #LC3 > h2, #LC4 > h2, #LC5 > h2, #LC6 > h2, #LC7 > h2, #LC8 > h2, #LC9 > h2, #LC10 > h2 {
color: #3861CE;
}
#LC1 > details *, #LC2 > details *, #LC3 > details *, #LC4 > details *, #LC5 > details *, #LC6 > details *, #LC7 > details *, #LC8 > details *, #LC9 > details *, #LC10 > details * {
color: #ad1a19;
}
/* ----- */
.LC * {color: #648FFF; }
.LC > h2 { color: #3861CE; }
.LC > details * { color: #ad1a19; }
/* ----- */
.button-container {
display: inline-block;
gap: 10px; /* Space between buttons */
}
.button {
background-color: #648FFF; /* Blue */
border: none;
color: white;
padding: 8px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 0;
cursor: pointer;
border-radius: 5px;
}
.button-python {
background-color: ##FFB000; /* Yellow */
}