-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
110 lines (88 loc) · 1.38 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
a {
text-decoration: none;
}
img.macaca {
max-width: 100%;
height: auto;
}
header {
border-left: 1em;
}
main {
flex: 1 0 auto;
margin: auto;
width: 90%;
}
.slider {
width: 70%;
}
.config-name {
width: 10em;
}
.config {
width: 4em;
}
.instruction-banner {
margin: auto;
width: 100%;
min-height: 15rem;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
}
.visible {
visibility: visible;
opacity: 1;
}
.hidden {
visibility: hidden;
opacity: 0;
transition: visibility 0s 0.3s, opacity 0.3s linear;
}
footer {
flex-shrink: 0;
width: 90%;
}
/* FIXME: one day we should use Sass and configure primary/secondary colors there */
a {
color: #89c060;
}
a:hover {
color: #89d060;
}
.text-macaca {
color: #fff;
}
.bg-macaca-dark {
background-color: #1b3220;
}
.btn-macaca {
color: #fff;
background-color: #89c060;
border-color: #89c060;
}
.btn-macaca:hover {
color: #fff;
background-color: #89d060;
border-color: #89d060;
cursor: pointer;
}
.badge-macaca {
background-color: #1b3220;
}
.slider::-webkit-slider-thumb {
background: #1b3220;
}
.slider::-moz-range-thumb {
background: #1b3220;
}
.slider::-ms-thumb {
background: #1b3220;
}