2024-10-30 05:38:05 +00:00
|
|
|
|
* {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background:#000;
|
|
|
|
|
color:#fff;
|
|
|
|
|
text-align:center;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
background:url('/static/banner.gif');
|
2024-10-31 01:58:51 +00:00
|
|
|
|
background-position:center;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
background-size:cover;
|
|
|
|
|
width: 100vw;
|
2024-10-31 01:58:51 +00:00
|
|
|
|
padding: 4em;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
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;
|
2024-10-31 01:58:51 +00:00
|
|
|
|
font-shadow: 0 0 1em black;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul { list-style: none;padding:0;margin: 0.5em; }
|
|
|
|
|
|
|
|
|
|
ul li {
|
2024-10-31 01:58:51 +00:00
|
|
|
|
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
width:90vw;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
margin: auto;
|
2024-10-31 01:58:51 +00:00
|
|
|
|
margin-bottom: 2em;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-10-31 01:58:51 +00:00
|
|
|
|
ul li a, ul li span {
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul li .station {
|
|
|
|
|
padding: 4em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul li.online .station {
|
2024-10-30 05:38:05 +00:00
|
|
|
|
background-image:url('/static/online.gif');
|
2024-10-31 01:58:51 +00:00
|
|
|
|
background-position:center;
|
|
|
|
|
background-size:cover;
|
|
|
|
|
box-shadow: inset 0 0 0.5em 1em black;
|
|
|
|
|
|
2024-10-30 05:38:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-10-31 01:58:51 +00:00
|
|
|
|
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;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-10-31 01:58:51 +00:00
|
|
|
|
ul li.online .stationurl {
|
|
|
|
|
color: #1f9b92;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul li.offline a {
|
|
|
|
|
color: grey;
|
2024-10-30 05:38:05 +00:00
|
|
|
|
}
|
|
|
|
|
|