-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
50 lines (47 loc) · 877 Bytes
/
global.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
46
47
48
49
50
horizontal-divider {
box-shadow: 1px 0px 0px transparent;
background-color: lightgray;
margin-left: -0.5px;
}
vertical-divider {
box-shadow: 0px 1px 0px b;
background-color: lightgray;
margin-top: -1px;
}
button {
border-width: 1px;
border-radius: 0px;
border-color: lightgray;
border-style: solid;
background-color: white;
}
button:hover {
cursor: pointer;
}
button:active {
border-color: gray;
background-color: lightgray;
cursor: pointer;
}
input {
border-width: 1px;
border-radius: 0px;
border-color: lightgray;
border-style: solid;
background-color: white;
padding-left: 8px;
padding-right: 8px;
}
input:focus {
outline: none;
border-color: gray;
}
input:hover {
cursor: text;
}
input[type="range"] {
padding: 0px;
}
input[type="range"]:hover {
cursor: unset;
}