-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (63 loc) · 937 Bytes
/
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
@import url(http://fonts.googleapis.com/css?family=Orbitron);
* {
box-sizing:border-box;
}
html, body {
margin:0;
padding:0;
min-height:100%;
height:100%;
}
body {
background:#e5e5e5;
color:#222;
font-family:"Open Sans";
}
.logo {
width:10%;
margin:0 auto;
margin-top:50px;
}
.logo img {
display:block;
width:100%;
height:100%;
}
.background {
position:absolute;
top:0;
left:0;
}
#vid {
visibility: hidden;
}
h1, h2 {
font-family:Orbitron;
text-align:center;
}
.other {
position:absolute;
top:0;
left:50%;
}
.instrument {
display:none;
}
.instrument + label {
display:inline-block;
background:#9296AB;
padding:2% 5%;
color:#222;
border-radius:2px;
border-bottom:5px solid #6168AB;
vertical-align: bottom;
}
.instrument:checked + label {
border-bottom:2px solid #6168AB;
margin-top:3px;
}
.instruments {
width:100%;
margin-top:200px;
text-align:center;
}