You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-26 22:13:53 +01:00
3LAS implementation
This commit is contained in:
66
web/css/3las/log_window.css
Normal file
66
web/css/3las/log_window.css
Normal file
@@ -0,0 +1,66 @@
|
||||
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;
|
||||
}
|
||||
69
web/css/3las/main.css
Normal file
69
web/css/3las/main.css
Normal file
@@ -0,0 +1,69 @@
|
||||
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;
|
||||
}
|
||||
274
web/css/3las/player_controls.css
Normal file
274
web/css/3las/player_controls.css
Normal file
@@ -0,0 +1,274 @@
|
||||
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,3 +1,16 @@
|
||||
.play-button {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
border-radius: 30px;
|
||||
transition: 0.3s ease-in-out background-color;
|
||||
background-color: var(--color-4);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.play-button:hover {
|
||||
background-color: var(--color-main-bright);
|
||||
}
|
||||
|
||||
#tune-buttons input[type="text"] {
|
||||
width: 50%;
|
||||
@@ -73,7 +86,7 @@ input[type="range"]::-webkit-slider-thumb {
|
||||
/* creating a custom design */
|
||||
height: 48px;
|
||||
width: 48px;
|
||||
background-color: #fff;
|
||||
background-color: var(--color-4);
|
||||
border-radius: 10px;
|
||||
border: 2px solid var(--color-4);
|
||||
/* slider progress trick */
|
||||
|
||||
@@ -26,6 +26,10 @@
|
||||
color: var(--color-4);
|
||||
}
|
||||
|
||||
.br-5 {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.flex-container {
|
||||
display: flex;
|
||||
}
|
||||
@@ -36,11 +40,24 @@
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.flex-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.hover-brighten {
|
||||
transition: 0.3s ease-in-out background-color;
|
||||
}
|
||||
|
||||
.hover-brighten:hover {
|
||||
cursor: pointer;
|
||||
background-color: var(--color-2);
|
||||
}
|
||||
|
||||
.text-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-big {
|
||||
font-size: 60px;
|
||||
font-weight: 300;
|
||||
@@ -68,6 +85,22 @@
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.top-10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.bottom-20 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.bottom-50 {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.p-10 {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
.text-medium-big {
|
||||
font-size: 32px;
|
||||
|
||||
@@ -44,6 +44,7 @@ body {
|
||||
color: white;
|
||||
background-color: var(--color-main);
|
||||
transition: 0.3s ease-in-out background-color;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
|
||||
@@ -29,10 +29,6 @@
|
||||
min-width: 500px;
|
||||
}
|
||||
|
||||
.modal-content p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user