blob: 517d38a9e92772232e3c2b8b739eda2630cfa25f (
plain)
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
|
body {
margin: 40px auto;
max-width: 538.55pt;
line-height: 1.6;
font-size: 18px;
padding: 0 10px;
}
img {
max-width: 538.55pt;
}
a {
color: darkred;
text-decoration: none;
}
a:hover {
color: #f55;
}
#songs {
list-style-type: '';
}
@media (min-width: 55em) {
#songs {
column-count: 2 ;
}
}
@media (min-width: 100em) {
#songs {
column-count: 3 ;
}
}
li {
margin-top: 10px;
margin-bottom: 10px;
padding-left: 0.7em;
}
h1, h2, h3 {
line-height: 1.2
}
|