-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.css
More file actions
95 lines (79 loc) · 1.24 KB
/
example.css
File metadata and controls
95 lines (79 loc) · 1.24 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
@charset 'utf-8';
.indexlink {
text-decoration: none;
font-size: 0.9em;
color: inherit;
}
.chord {
font-weight: bold;
}
.chord:before {
content: "(";
}
.chord:after {
content: ")";
}
.section_header {
font-weight: bold;
font-size: 1em;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
}
.section_header:before {
content: '[';
}
.section_header:after {
content: ']';
}
.vox {
font-weight: normal;
font-style: italic;
}
.vox:before {
content: "(";
}
.vox:after {
content: ")";
}
.notes {
font-style: normal;
font-weight: bold;
}
.notes:before {
content: "[";
}
.notes:after {
content: "]";
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
/* Box call-outs (repeated chorus etc) */
.box {
padding: 5px;
padding-top: 0;
padding-bottom:0;
border-left: 2px solid black;
width: auto;
max-width: 98%;
margin: 2px;
margin-bottom: 0.5em;
}
.box > p {
margin-top: 0;
margin-bottom: 0;
margin-left: 5px;
}
.box > p:last-child {
margin-bottom: 0;
padding-bottom: 0;
}
.box > h2, .section_header {
margin-top: 0;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 0;
}
/* End box definitions*/