You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-27 06:23:53 +01:00
cleanup + RDS features
This commit is contained in:
@@ -1,66 +0,0 @@
|
||||
p#logwindowbutton
|
||||
{
|
||||
cursor: pointer;
|
||||
font-size: 8pt;
|
||||
-webkit-border-top-left-radius: 2pt;
|
||||
-moz-border-radius-topleft: 2pt;
|
||||
-o-border-radius-topleft: 2pt;
|
||||
border-top-left-radius: 2pt;
|
||||
|
||||
-webkit-border-top-right-radius: 2pt;
|
||||
-moz-border-radius-topright: 2pt;
|
||||
-o-border-radius-topright: 2pt;
|
||||
border-top-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-right-radius: 2pt;
|
||||
-moz-border-radius-bottomright: 2pt;
|
||||
-o-border-radius-bottomright: 2pt;
|
||||
border-bottom-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-left-radius: 2pt;
|
||||
-moz-border-radius-bottomleft: 2pt;
|
||||
-o-border-radius-bottomleft: 2pt;
|
||||
border-bottom-left-radius: 2pt;
|
||||
background: #111111;
|
||||
color: #F0F0E1;
|
||||
padding: 2pt;
|
||||
width: 90pt;
|
||||
|
||||
border: 1pt solid #777777;
|
||||
}
|
||||
|
||||
ul#logwindow
|
||||
{
|
||||
font-family: monospace;
|
||||
font-size: 8pt;
|
||||
display: none;
|
||||
-webkit-border-top-left-radius: 2pt;
|
||||
-moz-border-radius-topleft: 2pt;
|
||||
-o-border-radius-topleft: 2pt;
|
||||
border-top-left-radius: 2pt;
|
||||
|
||||
-webkit-border-top-right-radius: 2pt;
|
||||
-moz-border-radius-topright: 2pt;
|
||||
-o-border-radius-topright: 2pt;
|
||||
border-top-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-right-radius: 2pt;
|
||||
-moz-border-radius-bottomright: 2pt;
|
||||
-o-border-radius-bottomright: 2pt;
|
||||
border-bottom-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-left-radius: 2pt;
|
||||
-moz-border-radius-bottomleft: 2pt;
|
||||
-o-border-radius-bottomleft: 2pt;
|
||||
border-bottom-left-radius: 2pt;
|
||||
background: #CCCCCC;
|
||||
padding: 2pt;
|
||||
|
||||
border: 1pt solid #EEEEEE;
|
||||
}
|
||||
|
||||
ul#logwindow li
|
||||
{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -1,69 +0,0 @@
|
||||
div#viewcontainer
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.errormessage
|
||||
{
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 200pt;
|
||||
height: 150pt;
|
||||
left: 0pt;
|
||||
top: 0pt;
|
||||
font-family: sans-serif;
|
||||
font-size: 20pt;
|
||||
font-weight: 200;
|
||||
color: #EE0000;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
div#chromesuggestion
|
||||
{
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 200pt;
|
||||
height: 150pt;
|
||||
left: 0pt;
|
||||
top: 0pt;
|
||||
font-family: sans-serif;
|
||||
font-size: 15pt;
|
||||
font-weight: 200;
|
||||
color: #EEEEEE;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
div#chromesuggestion a,span
|
||||
{
|
||||
text-decoration: none;
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
div#lightoff
|
||||
{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0pt;
|
||||
top: 0pt;
|
||||
z-index: 9999999;
|
||||
background: black;
|
||||
opacity: 0.9;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
div#lightbutton
|
||||
{
|
||||
background-image: url(../../images/3las/light.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
position: absolute;
|
||||
width: 50pt;
|
||||
height: 50pt;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 99999999;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -1,274 +0,0 @@
|
||||
div#audioplayer
|
||||
{
|
||||
position: relative;
|
||||
width: 180pt;
|
||||
height: 100pt;
|
||||
|
||||
background: #4c4e5a;
|
||||
background: -moz-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4e5a), color-stop(100%,#2c2d33));
|
||||
background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
|
||||
background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
|
||||
background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
|
||||
background: linear-gradient(to bottom, #4c4e5a 0%,#2c2d33 100%);
|
||||
|
||||
-webkit-border-top-left-radius: 2pt;
|
||||
-moz-border-radius-topleft: 2pt;
|
||||
-o-border-radius-topleft: 2pt;
|
||||
border-top-left-radius: 2pt;
|
||||
|
||||
-webkit-border-top-right-radius: 2pt;
|
||||
-moz-border-radius-topright: 2pt;
|
||||
-o-border-radius-topright: 2pt;
|
||||
border-top-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-right-radius: 2pt;
|
||||
-moz-border-radius-bottomright: 2pt;
|
||||
-o-border-radius-bottomright: 2pt;
|
||||
border-bottom-right-radius: 2pt;
|
||||
|
||||
-webkit-border-bottom-left-radius: 2pt;
|
||||
-moz-border-radius-bottomleft: 2pt;
|
||||
-o-border-radius-bottomleft: 2pt;
|
||||
border-bottom-left-radius: 2pt;
|
||||
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
div#audioplayer div#volumebar
|
||||
{
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
top: 65pt;
|
||||
left: 15pt;
|
||||
width: 150pt;
|
||||
height: 20pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#activityindicator
|
||||
{
|
||||
position: absolute;
|
||||
top: 5pt;
|
||||
left: 5pt;
|
||||
width: 20pt;
|
||||
height: 20pt;
|
||||
-webkit-border-top-left-radius: 10pt;
|
||||
-moz-border-radius-topleft: 10pt;
|
||||
-o-border-radius-topleft: 10pt;
|
||||
border-top-left-radius: 10pt;
|
||||
|
||||
-webkit-border-top-right-radius: 10pt;
|
||||
-moz-border-radius-topright: 10pt;
|
||||
-o-border-radius-topright: 10pt;
|
||||
border-top-right-radius: 10pt;
|
||||
|
||||
-webkit-border-bottom-right-radius: 10pt;
|
||||
-moz-border-radius-bottomright: 10pt;
|
||||
-o-border-radius-bottomright: 10pt;
|
||||
border-bottom-right-radius: 10pt;
|
||||
|
||||
-webkit-border-bottom-left-radius: 10pt;
|
||||
-moz-border-radius-bottomleft: 10pt;
|
||||
-o-border-radius-bottomleft: 10pt;
|
||||
border-bottom-left-radius: 10pt;
|
||||
|
||||
|
||||
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
-o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
|
||||
}
|
||||
|
||||
div#audioplayer div#activityindicator div#redlighton
|
||||
{
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
top: 1pt;
|
||||
left: 1pt;
|
||||
width: 19pt;
|
||||
height: 19pt;
|
||||
background-image: url(../../images/3las/red_light_on.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
div#audioplayer div#activityindicator div#redlightoff
|
||||
{
|
||||
position: absolute;
|
||||
top: 1pt;
|
||||
left: 1pt;
|
||||
width: 19pt;
|
||||
height: 19pt;
|
||||
background-image: url(../../images/3las/red_light_off.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
div#audioplayer div#volumebar *
|
||||
{
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: medium none;
|
||||
outline: medium none;
|
||||
}
|
||||
|
||||
div#audioplayer div#volumebar div#totalvolume
|
||||
{
|
||||
position: absolute;
|
||||
top: 3pt;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 14pt;
|
||||
|
||||
|
||||
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
-o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) inset, 1px 1px 1px rgba(255, 255, 255, 0.25);
|
||||
|
||||
background: none repeat scroll 0% 0% rgb(33, 34, 39);
|
||||
|
||||
|
||||
-webkit-border-top-left-radius: 7pt;
|
||||
-moz-border-radius-topleft: 7pt;
|
||||
-o-border-radius-topleft: 7pt;
|
||||
border-top-left-radius: 7pt;
|
||||
|
||||
-webkit-border-top-right-radius: 7pt;
|
||||
-moz-border-radius-topright: 7pt;
|
||||
-o-border-radius-topright: 7pt;
|
||||
border-top-right-radius: 7pt;
|
||||
|
||||
-webkit-border-bottom-right-radius: 7pt;
|
||||
-moz-border-radius-bottomright: 7pt;
|
||||
-o-border-radius-bottomright: 7pt;
|
||||
border-bottom-right-radius: 7pt;
|
||||
|
||||
-webkit-border-bottom-left-radius: 7pt;
|
||||
-moz-border-radius-bottomleft: 7pt;
|
||||
-o-border-radius-bottomleft: 7pt;
|
||||
border-bottom-left-radius: 7pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#volumebar div#currentvolume
|
||||
{
|
||||
position: absolute;
|
||||
top: 4pt;
|
||||
left: 1pt;
|
||||
width: 75pt;
|
||||
height: 12pt;
|
||||
background-image: url(../../images/3las/bar.svg);
|
||||
-webkit-border-top-left-radius: 6pt;
|
||||
-moz-border-radius-topleft: 6pt;
|
||||
-o-border-radius-topleft: 6pt;
|
||||
border-top-left-radius: 6pt;
|
||||
-webkit-border-bottom-left-radius: 6pt;
|
||||
-moz-border-radius-bottomleft: 6pt;
|
||||
-o-border-radius-bottomleft: 6pt;
|
||||
border-bottom-left-radius: 6pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#volumebar div#volumeknob
|
||||
{
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 75pt;
|
||||
width: 20pt;
|
||||
height: 20pt;
|
||||
background-image: url(../../images/3las/knob.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
margin-left: -10pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#playbuttonoverlay *
|
||||
{
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: medium none;
|
||||
outline: medium none;
|
||||
}
|
||||
|
||||
div#audioplayer div#playbuttonoverlay
|
||||
{
|
||||
position: absolute;
|
||||
top: 15pt;
|
||||
left: 15pt;
|
||||
width: 150pt;
|
||||
height: 70pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#playbuttonoverlay div#playbutton
|
||||
{
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0pt;
|
||||
left: 40pt;
|
||||
width: 70pt;
|
||||
height: 70pt;
|
||||
background-image: url(../../images/3las/play.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
div#audioplayer div#controlbar *
|
||||
{
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: medium none;
|
||||
outline: medium none;
|
||||
}
|
||||
|
||||
div#audioplayer div#controlbar
|
||||
{
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
top: 15pt;
|
||||
left: 15pt;
|
||||
width: 150pt;
|
||||
height: 50pt;
|
||||
}
|
||||
|
||||
div#audioplayer div#controlbar div#mutebutton
|
||||
{
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0pt;
|
||||
left: 51.5pt;
|
||||
width: 47pt;
|
||||
height: 40pt;
|
||||
background-image: url(../../images/3las/mute.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
div#audioplayer div#controlbar div#unmutebutton
|
||||
{
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0pt;
|
||||
left: 51.5pt;
|
||||
width: 47pt;
|
||||
height: 40pt;
|
||||
background-image: url(../../images/3las/unmute.svg);
|
||||
-webkit-background-size: 100% 100%;
|
||||
-moz-background-size: 100% 100%;
|
||||
-o-background-size: 100% 100%;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
h2 {
|
||||
color: var(--color-4);
|
||||
margin-bottom: 0;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
@@ -44,8 +45,8 @@ h3 {
|
||||
display:list-item;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
height: 425px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
max-height: 380px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
@@ -59,7 +59,7 @@
|
||||
}
|
||||
|
||||
.text-big {
|
||||
font-size: 60px;
|
||||
font-size: 52px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
@@ -77,10 +77,18 @@
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.text-smaller {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.text-gray {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.text-red {
|
||||
color: #ff5776;
|
||||
}
|
||||
|
||||
.text-uppercase {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
@@ -53,14 +53,14 @@ body {
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: auto;
|
||||
max-width: 1240px;
|
||||
max-width: 1180px;
|
||||
}
|
||||
|
||||
@media (max-width: 960px) {
|
||||
#wrapper {
|
||||
position: static;
|
||||
transform: none;
|
||||
margin: 0 auto;
|
||||
margin: 50px auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,11 +33,6 @@
|
||||
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.panel-10, .panel-33, .panel-90 {
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.panel-75 {
|
||||
width: 90%;
|
||||
}
|
||||
@@ -49,4 +44,9 @@
|
||||
width: 90%;
|
||||
margin: auto;
|
||||
}
|
||||
[class^="panel-"] {
|
||||
margin: auto;
|
||||
width: 90%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user