all repos — grimoire @ fdd6af0ba83218e45722dd7ac67e074859868a89

dead simple icecast frontend

static/style.css (raw)

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
* {
  padding: 0;
  margin: 0;
}

body {
  background:#000;
  color:#fff;
  text-align:center;
  font-family: monospace;
}

header {
  background:url('/static/banner.gif');
  background-position:center;
  background-size:cover;
  width: 100vw;
  padding: 4em;
  box-sizing: border-box;
  margin: auto;
  box-shadow: inset 0 0 0.5em 1em black;
}

h1, li a {
  color: goldenrod;
  text-shadow: black 0 0 1em;
  font-weight: bold;
  text-decoration: none;
}

h1 {
  color: #fff !important;
  font-shadow: 0 0 1em black;
}

ul { list-style: none;padding:0;margin: 0.5em; }

ul li {
  max-width: 420px;
  width:90vw;
  margin: auto;
  margin-bottom: 2em;
}

ul li a, ul li span {
  display:block;
}

ul li .station {
  padding: 4em;
}

ul li.online .station {
  background-image:url('/static/online.gif');
    background-position:center;
  background-size:cover;
  box-shadow: inset 0 0 0.5em 1em black;

}

ul li .stationurl {
  border: solid 1px grey;
  padding: 1ch;
  text-align: left;
  font-weight: normal;
  font-size: 85%;
}

ul li .stationurl::before {
  content: "» ";
}

ul li.offline .stationurl::before {
  content: "× ";
}

ul li.offline .stationurl {
  color: grey50;
}

ul li.online .stationurl {
  color: #1f9b92;
} 

ul li.offline a {
  color: grey;
}