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
48
49
50
51
52
53
54
55
56
|
window {
background-image: url("file:///usr/local/share/backgrounds/mass.jpg");
background-size: cover;
background-position: center;
background-color: rgb(146, 149, 145);
}
#clock {
font-weight: bold;
padding: 20px;
color: rgb(245, 245, 245);
text-shadow: 4px 0 #000, -4px 0 #000, 0 4px #000, 0 -4px #000,
2px 2px #000, -2px -2px #000, 2px -2px #000, -2px 2px #000;
}
box#body {
background-color: rgba(245, 245, 245, 0.4);
border: 3px solid rgb(49, 54, 56);
border-radius: 10px;
padding: 20px;
}
#body > box {
background-color: rgba(49, 54, 56, 0.8);
padding: 20px;
}
#body > box > box {
padding: 20px 0 20px 0;
}
box#body > box > box > label {
margin-right: 20px;
}
label,
entry {
font-size: 1.7em;
min-height: 50px;
border-radius: 0;
}
button,
entry,
combobox * {
color: rgb(245, 245, 245);
background: rgb(24, 26, 27);
border: none;
}
box#body > box > box > button,
box#body > box > box > entry,
box#body > box > combobox {
border: 1px solid rgb(245, 245, 245);
border-radius: 0;
}
|