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
body {
color: #010101;
background: #EFF0F1;
}
button {
background: #FCFCFC;
color: #010101;
border: 1px #BCBEBF;
border-radius: 3px;
padding: 4px 8px;
}
button:hover {
border: 1px #3DAEE9;
}
entry {
background: #FFFFFF;
border: 1px #BCBEBF;
border-radius: 3px;
padding: 5px;
}
entry:hover {
border: 1px #3DAEE9;
}
entry:focus {
border: 1px #3DAEE9;
}
scroll::scrollbar {
background: #E1E1E1;
}
scroll::scrollbar-thumb {
background: #C1C1C1;
}