-
Notifications
You must be signed in to change notification settings - Fork 20
/
terpstra-style.css
76 lines (70 loc) · 1.38 KB
/
terpstra-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
body {
/*margin: 0;
padding: 0;
background-color: #000000;
color: white;*/
background-image: url(Pattern3D_06.png);
background-repeat: repeat;
background-position: top left;
background-attachment: fixed;
}
#fullscreen-setter {
background: black;
color: white;
border-radius: 1em;
padding: 1em;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
cursor: pointer
}
#keyboard {
position: absolute;
height: 100%;
width: 100%;
top: 50%;
left: 50%;
display: none;
}
#backButton {
position: absolute;
left: 0;
top: 50%;
display: none;
z-index: 100;
}
.iosscrollable {
height: auto;
-webkit-overflow-scrolling: touch;
}
.u-half-width {
width: 47.5%;
box-sizing: border-box;
float: left;
}
.rpad{
margin-right: 5%;
}
select#quicklinks {
max-width: 100%;
}
.button, button, input[type="submit"], input[type="reset"], input[type="button"]
{
max-width: 100%;
}
@media screen and (max-width: 550px) {
input[type="number"] {
width: 100%;
}
select#instrument {
width: 100%;
}
}
@media screen and (max-width: 350px) {
.button, button, input[type="submit"], input[type="reset"], input[type="button"]
{
padding: 0 10px;
}
}