162 lines
3.3 KiB
CSS
162 lines
3.3 KiB
CSS
.thumb {
|
|
border: 2px solid #ff008d;
|
|
}
|
|
|
|
body {
|
|
margin: 1em auto 3em auto;
|
|
background-color: #1b1a1a;
|
|
color: #848484;
|
|
font-family: Monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ff008d;
|
|
}
|
|
|
|
input, select, textarea {
|
|
border: 1px double #ff008d;
|
|
background: #2f2f2f;
|
|
color: #ffffff;
|
|
font-family: 'Hack', monospace, sans-serif;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.return {
|
|
text-align: center;
|
|
font-size: 25px;
|
|
border: 2px solid #ff008d;
|
|
}
|
|
|
|
.controls {
|
|
text-align: center;
|
|
color: #ff008d;
|
|
font-weight: bold;
|
|
width: 888px;
|
|
margin: 0 auto;
|
|
background: #484747;
|
|
padding-top: 0;
|
|
margin-top: 5px;
|
|
border: 2px solid #ff008d;
|
|
}
|
|
|
|
.medium, .thumbnail {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 5px;
|
|
background: #484747;
|
|
border: 2px solid #ff008d;
|
|
padding: 5px;
|
|
}
|
|
|
|
span.id {
|
|
color: #ffffff;
|
|
}
|
|
|
|
a#holland {
|
|
color: #ff008d;
|
|
}
|
|
|
|
code {
|
|
color: #ff008d;
|
|
}
|
|
|
|
.panel {
|
|
margin-bottom: 0;
|
|
background-color: rgb(72, 71, 71);
|
|
border: 2px solid #ff008d;
|
|
border-radius: 0px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
width: 25%;
|
|
float: left;
|
|
position: relative;
|
|
min-height: 1px;
|
|
}
|
|
|
|
.plyr--audio .plyr__controls {
|
|
padding: 0;
|
|
border-radius: inherit;
|
|
background: #1b1a1a;
|
|
border: 0;
|
|
color: #ff008d;
|
|
width: 300px;
|
|
padding-right: 5;
|
|
height: 32px;
|
|
}
|
|
|
|
.plyr input[type=range]::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
margin-top: -4px;
|
|
position: relative;
|
|
height: 16px;
|
|
width: 16px;
|
|
background: #262626;
|
|
border: 1px solid #ff008d;
|
|
border-radius: 100%;
|
|
transition: background .2s ease,border .2s ease,transform .2s ease;
|
|
box-shadow: 0 1px 1px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.15);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.plyr__progress--played, .plyr__volume--display {
|
|
z-index: 1;
|
|
color: #ff008d;
|
|
background: 0 0;
|
|
transition: none;
|
|
}
|
|
|
|
.plyr--audio .plyr__controls button.tab-focus:focus, .plyr--audio .plyr__controls button:hover, .plyr__play-large {
|
|
background: #484747;
|
|
color: #ff008d;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.plyr input[type=range]:active::-webkit-slider-thumb {
|
|
background: #262626;
|
|
border-color: #ff008d;
|
|
transform: scale(1.25)
|
|
}
|
|
|
|
.plyr--video .plyr__controls {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 2;
|
|
padding: 0px 0px 0px;
|
|
background: rgba(38, 38, 38, 0.97);
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
color: #ff008d;
|
|
transition: opacity .3s cubic-bezier(0.12, 0.63, 0.25, 1);
|
|
}
|
|
|
|
/* Feuerfick */
|
|
.plyr input[type="range"]::-moz-range-thumb {
|
|
position: relative;
|
|
height: 16px;
|
|
width: 16px;
|
|
background: #ff008d;
|
|
border: 2px solid #262626;
|
|
border-radius: 100%;
|
|
transition: background .2s ease, border .2s ease, transform .2s ease;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .15);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.plyr input[type=range]:active::-moz-range-thumb {
|
|
background: #ff008d;
|
|
border-color: #262626;
|
|
transform: scale(1.25)
|
|
}
|
|
|
|
.plyr--video .plyr__controls button.tab-focus:focus, .plyr--video .plyr__controls button:hover {
|
|
background: #484747;
|
|
color: #ff008d;
|
|
border-radius: 0;
|
|
} |