-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsomafm.css
111 lines (94 loc) · 1.34 KB
/
somafm.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
104
105
106
107
108
109
110
111
body
{
background-color: #f0f0f0;
color: black;
margin: 0;
padding: 0;
}
.topbar
{
position: fixed; top: 0; left: 0; right: 0; height: 100px;
background-color: rgba(255, 255, 255, .9);
color: black;
}
.content
{
padding: 30px;
margin-top: 90px;
text-align: center;
}
.nowplaying
{
font: 14pt Tahoma;
color: #c0c0c0;
}
#nowplaying
{
color: black;
}
#titleArea
{
margin-bottom: 10px;
}
#titleText
{
font: 60px Arial;
cursor: default;
}
#clockDate
{
padding-right: 4px;
font: 20px 'Segoe UI Light', 'Helvetica Neue';
font-weight: 100;
cursor: default;
}
#clockTime
{
padding-right: 4px;
font: 50px 'Segoe UI Light', 'Helvetica Neue';
font-weight: 100;
cursor: default;
}
.newstation
{
width: 135px;
height: 160px;
text-align: center;
padding: 15px 15px 0px 15px;
display: inline-block;
}
.newstation img
{
width: 120px;
height: 120px;
}
.newtitle
{
padding-top: 4px;
font: 12px 'Segoe UI Light', 'Helvetica Neue', sans-serif;
text-align: center;
}
@media (max-width: 500px)
{
.content
{
padding: 5px;
}
.newstation
{
width: 105px;
height: 130px;
text-align: center;
padding: 5px 5px 0px 5px;
display: inline-block;
}
.newstation img
{
width: 80px;
height: 80px;
}
#theClock, #wx
{
display: none;
}
}