blob: 9b1f7bef6277cc5be27519b2e03ff01b1d728b30 (
plain) (
blame)
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
|
#player {
display: flex;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
align-items: center;
justify-content: center;
}
#state {
font-size: 28px;
margin-right: 10px;
cursor: pointer;
}
#state:hover {
color: red;
}
#player.autodj #genre {
display: none;
}
#player.autodj #np {
font-size: 12px;
padding-top: 5px;
}
#player.live #genre {
font-size: 14px;
font-weight: bold;
color: red;
}
#player.live #genre span { font-weight: normal }
#player.live #np {
font-size: 12px;
}
.Aligner-item {
max-width: 50%;
}
.Aligner-item--top {
align-self: flex-start;
}
.Aligner-item--bottom {
align-self: flex-end;
}
|