-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (64 loc) · 1.15 KB
/
styles.css
File metadata and controls
65 lines (64 loc) · 1.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
background-color: #233;
color: #3C3C3C;
}
.version {
background-color: #344;
border: 0.2% solid #bcc;
color: #eff;
}
button {
background-color: #535353;
color: white;
}
button:hover {
background-color: #45a049;
}
input[type="number"],
select,
input[type="text"] {
border: 1px solid #666;
background-color: #FFFFFF1A;
color: #ebebeb;
}
input[type="number"]:focus,
select:focus,
input[type="text"]:focus {
outline: none;
border-color: #b9b9b98c;
}
select {
border: 1px solid #666;
background-color: #FFFFFF1A;
color: #ebebeb;
}
select:focus {
outline: none;
border-color: #4242428c;
}
select option {
background-color: #444;
color: #ebebeb;
}
button.enabled {
background-color: green;
color: white;
}
button.disabled {
background-color: red;
color: white;
}
.box {
background-color: #344;
border: 1px solid #666;
color: white;
}
.box.color-list-box {
padding: 1%;
width: calc(75% - 24% - 2%);
}
.image-container {
background-color: #344;
border: 1px solid #666;
color: white;
}