-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.css
62 lines (53 loc) · 769 Bytes
/
grid.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
h1 {
text-align: center;
font-size: 24px;
padding: 20px;
}
ul li {
display: inline-block;
}
div.figure {
text-align: left;
position: relative;
top: 0px;
left: 0px;
width: 170px;
height: 200px;
margin: 15px 10px;
}
div.sp-player {
position: absolute;
top: 0px;
left: 10px;
width: 150px;
height: 150px;
}
div.sp-player-image {
border-radius: 0px;
box-shadow: 0px 2px 4px 0px #444;
}
div.name, div.artist {
width: 100%;
height: 15px;
position: absolute;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
font-size: 9pt;
}
div.name {
top: 160px;
left: 0px;
font-weight: bold;
}
div.artist {
top: 178px;
left: 0px;
}
a.name_link {
color: #333;
}
a.artist_link {
color: #666;
}