-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmplayer-radio.css
103 lines (87 loc) · 2.06 KB
/
mplayer-radio.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
.MMM-MplayerRadio .mradio.wrapper {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
font-size: 0px;
line-height: 0px;
}
.MMM-MplayerRadio .mradio .stationsWrapper {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
font-size: 0px;
line-height: 0px;
width: 100%;
/* height: 240px; */
overflow: hidden;
}
.MMM-MplayerRadio .mradio .station {
width: 100%;
height: 45px;
max-height: 45px;
margin-top: 10px;
}
.MMM-MplayerRadio .mradio .station.selected {
height: 120px;
max-height: 120px;
}
.MMM-MplayerRadio .mradio .station .innerWrapper {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
height: 100%;
}
.MMM-MplayerRadio .mradio .station.selected .innerWrapper {
border-radius: 5px;
}
.MMM-MplayerRadio .mradio .station.selected.playing .innerWrapper {
background-color: #425a85;
border-radius: 5px;
}
.MMM-MplayerRadio .mradio .station.selected.stopped .innerWrapper {
background-color: #302f2d;
border-radius: 5px;
}
.MMM-MplayerRadio .mradio .station .innerWrapper .titleWrapper{
margin-left: 20px;
}
.MMM-MplayerRadio .mradio .station .logoWrapper {
width: 150px;
text-align: center;
max-height: 45px;
margin-left: 5px;
margin-top: 5px;
margin-bottom: 5px;
}
.MMM-MplayerRadio .mradio .station.selected .logoWrapper {
max-height: 120px;
}
.MMM-MplayerRadio .mradio .station .logo {
max-width: 150px;
max-height: 35px;
border-radius: 5px;
}
.MMM-MplayerRadio .mradio .station.selected .logo {
max-height: 110px;
}
.MMM-MplayerRadio .mradio .station .titleWrapper {
font-size: 26px;
}
.MMM-MplayerRadio .mradio .streamInfoWrapper {
min-height: 25px;
font-size: 16px;
margin-top: 25px;
}
.MMM-MplayerRadio .mradio .controlWrapper {
padding-top: 5px;
width: 100%;
}
.MMM-MplayerRadio .mradio .controlWrapper .button {
height: 30px;
width: 30px;
margin-left: 5px;
margin-right: 5px;
}