-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erbrechner.css
75 lines (60 loc) · 1.11 KB
/
erbrechner.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
body, #app {
overflow: hidden;
width: 100vw;
height: 100vh;
}
#menubar {
padding-left: 16px;
}
#canvascontainer {
width: 100vw;
height: 100vh;
background-color: black;
}
#fullscreen-open, #fullscreen-close {
padding: 0 5px;
}
.dropdown-menu {
max-height: 80vh;
overflow-y: auto;
}
.dropdown-item {
margin-right: 10px;
cursor: pointer;
}
.dropdown-toggle {
cursor: pointer;
}
/* Remove arrow buttons in number input */
/* Chrome, Safari, Edge, Opera */
#valueinput::-webkit-outer-spin-button,
#valueinput::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
#valueinput {
-moz-appearance: textfield;
}
/* Mobile adjustments */
@media screen and (max-width: 992px) {
.form-inline {
margin: 5px 0;
}
#menubar {
padding-right: 16px;
max-height: 100vh;
overflow-y: auto;
}
#mainmenubar {
padding-bottom: 8px;
}
.hideonmobile {
display: none;
}
}
@media screen and (orientation: portrait) {
#canvascontainer div {
min-height: 100%;
}
}