-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
90 lines (78 loc) · 1.23 KB
/
style.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
font-family: "Lato", sans-serif;
background-color: #222;
text-align: left;
}
/* unvisited link */
a:link {
color: #777;
}
/* visited link */
a:visited {
color: #444;
}
/* mouse over link */
a:hover {
color: #ccc;
}
/* selected link */
a:active {
color: #333;
}
.text-color {
color: #ccc;
text-align: center;
}
.text-color-light {
color: #999;
text-align: center;
}
.cb-container {
text-align: center;
}
.cb-div {
display: inline-block;
text-align: center;
margin: auto;
}
label {
color: #ccc;
text-align: left;
}
.output {
text-align: center;
color: #ccc;
}
.container {
margin: auto;
}
input {
background-color: #2f2f2f;
color: #ccc;
padding: 10px 10px;
margin: 5px 0px;
box-sizing: border-box;
border: 1px solid #444;
border-radius: 2px;
width: 100%;
}
input:hover {
background-color: #383838;
}
.button {
background-color: #2f2f2f;
color: #ccc;
text-align: center;
padding: 10px 70px;
border: 1px solid #444;
margin: auto;
margin-top: 10px;
margin-bottom: 5px;
}
.button:disabled {
color: #777;
background-color: #282828;
}
.button:hover:enabled {
background-color: #383838;
}