-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (78 loc) · 1.76 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
input[type="number"] {
max-width: 80%;
}
.outer {
position: fixed;
top: 56px;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
padding: 0;
}
/* Customize fonts */
body, label, input, button, select {
font-family: 'Arial';
font-weight: 200;
}
h1, h2, h3, h4 { font-weight: 400; }
#controls {
/* Appearance */
background-color: white;
padding: 10px 15px 10px 10px;
cursor: move;
opacity: 0.80;
zoom: 0.9;
transition: opacity 0;
}
#controls:hover {
/* Fade in while hovering */
opacity: 1;
}
#logo {
/* Appearance */
background-color: transparent;
cursor: move;
/* Fade out while not hovering */
opacity: 0.25;
zoom: 0.9;
transition: opacity 500ms 1s;
}
#logo:hover {
/* Fade in while hovering */
opacity: 0.95;
transition-delay: 0;
}
.btn-primary {
color: #fff;
background-color: #2C3E50;
border-color: #2C3E50;
}
.btn-primary:hover {
color: #fff;
background-color: #1e2b37;
border-color: #1a252f;
}
.btn-primary:focus, .btn-primary.focus {
color: #fff;
background-color: #1e2b37;
border-color: #1a252f;
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #2C3E50;
border-color: #2C3E50;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #1a252f;
border-color: #151e27;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}