-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (62 loc) · 1.11 KB
/
styles.css
File metadata and controls
73 lines (62 loc) · 1.11 KB
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
* {
margin: 0;
padding: 0;
}
#logo {
position: absolute;
top: 5%;
left: 7%;
height: 4vw;
}
.header {
/* DEMO header image */
background-size: cover;
background-repeat: no-repeat;
width: 100%;
position: relative;
}
.header:before {
content: "";
display: block;
padding-top: 56.25%;
}
.header-content {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.header h1 {
position: absolute;
/* DEMO: measure percent position */
width: 100%;
text-align: center;
color: #ffffff;
font-family: "ff-good-headline-web-pro-con",sans-serif;
font-size: 10vw;
font-weight: 900;
}
.instruments {
position: absolute;
display: flex;
justify-content: center;
width: 100%;
top: 80%;
height: 8vw;
margin: auto auto;
}
.instruments a {
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
width: 8vw;
height: 8vw;
/* DEMO: margin-right */
}
.keyboard {
background: url(images/keyboard.svg);
}
.stereo {
/* DEMO: from inline editor index.html:17 */
}