-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (59 loc) · 986 Bytes
/
styles.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
* {
text-align: center;
}
::selection {
color: #fff;
background-color: #6c6;
}
::-moz-selection {
color: #fff;
background-color: #6c6;
}
img, button, br {
user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}
h1 {
display: inline;
font-size: 150% !important;
font-weight: lighter !important;
}
input[type="number"] {
font-size: 120%;
}
input[type="number"]:focus {
border-color: #6c6;
box-shadow: 0.25rem 0.25rem 0 #6c6;
}
.input-group-text i {
margin-right: 0.25rem;
}
.input-group-text.highlight {
background-color: #393;
color: #fff;
border-color: #6c6;
}
#warningText {
padding: 0.5rem;
border-radius: 0.25rem;
}
a {
font-weight: bold;
color: #393 !important;
}
#weight-svg {
margin-left: 1rem;
}
#weight-arc {
-webkit-transition: d 0.2s;
transition: d 0.2s;
}
@media only screen and (max-width: 768px) { /* mobile */
#keyboard-shortcuts-p {
display: none;
}
}