-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (116 loc) · 1.53 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#box {
position: relative;
margin: auto;
margin-top: 30px;
display: block;
width: 80%;
height: 600px;
}
/* staff outline */
#staff {
position: absolute;
width: 100%;
height: 10%;
border-right: 2px solid black;
}
.lines {
position: absolute;
box-sizing: border-box;
width: 100%;
border: 1px solid black;
}
#e {
bottom: 0%;
}
#g {
bottom: 25%;
}
#b {
bottom: 50%;
}
#d {
top: 25%;
}
#f {
top: 0%;
}
/* images */
#treble {
position: absolute;
height: 180%;
bottom: -50%;
left: -1%;
}
#bflat {
position: absolute;
height: 50%;
bottom: 37%;
left: 5%;
}
#commontime {
position: absolute;
height: 110%;
left: 9%;
}
#rest {
position: absolute;
height: 70%;
right: 33%;
top: 7%;
}
/* note and bar line classes */
.bar-line {
position: absolute;
box-sizing: border-box;
height: 100%;
border: 1px solid black;
}
.open {
position: absolute;
box-sizing: border-box;
height: 26%;
width: 2%;
border: 2px solid black;
border-radius: 73% 50% 73% 50%;
}
.filled {
position: absolute;
box-sizing: border-box;
height: 26%;
width: 2%;
border: 2px solid black;
background-color: black;
border-radius: 73% 50% 73% 50%;
}
.note-line {
position: absolute;
height: 70%;
border: 1px solid black;
}
.dot {
position: absolute;
box-sizing: border-box;
height: 6%;
width: 0.5%;
background-color: black;
border: solid black;
border-radius: 50%;
}
.f {
bottom: 0%;
}
.a {
bottom: 25%;
}
.c {
top: 25%;
}
.g {
bottom: 13%;
}
.b {
bottom: 40%;
}
.d {
bottom: 60%;
}