-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
47 lines (41 loc) · 1.12 KB
/
main.css
File metadata and controls
47 lines (41 loc) · 1.12 KB
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
/* Main window. */
window {
background-color: #144F66;
}
/* Grid square. Fills in empty spaces where there are no buttons. */
grid {
background-color: #144F66;
}
/* When combined with Gtk Grid, font-size and padding significantly affect automatic button sizing. */
button {
background-color: #F2CC8F;
border-radius: 5px;
border: 1px solid #464646;
padding: 10px 20px;
font-size: 17px;
}
/* Button when actively pressed/clicked. */
button:hover:active {
background-color: #EAB69F;
-webkit-box-shadow: inset 0px 0px 3px #303030;
-mox-box-shadow: inset 0px 0px 3px #303030;
box-shadow: inset 0px 0px 3px #303030;
outline: none;
}
/* Depressed toggle button (on). */
button:checked {
background-color: #22A94E;
-webkit-box-shadow: inset 0px 0px 3px #303030;
-mox-box-shadow: inset 0px 0px 3px #303030;
box-shadow: inset 0px 0px 3px #303030;
outline: none;
}
/* Button that is set to not sensitive. */
button:disabled {
background-color: #3D405B;
border-color: #363636;
}
/* Make text for disabled button lighter if the button color is dark. */
button:disabled label {
color: #9FB4BE;
}