This repository has been archived on 2024-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
icytv/src/css/player.css

137 lines
2.4 KiB
CSS
Raw Normal View History

2018-08-06 13:16:24 +00:00
body {
font-family: Helvetica, sans-serif;
2018-08-06 13:16:24 +00:00
margin: 0;
padding: 0;
}
.livecnt {
position: absolute;
background-color: black;
left: 0;
right: 0;
bottom: 0;
top: 0;
overflow: hidden;
}
.videobox {
height: 100%;
}
#stream {
width: 100%;
height: 100%;
}
2019-10-23 13:43:57 +00:00
.badge {
2018-08-06 13:16:24 +00:00
position: absolute;
color: white;
font-size: 120%;
margin: 20px;
text-transform: uppercase;
background-color: #F44336;
padding: 10px;
border-radius: 5px;
}
2019-10-23 13:43:57 +00:00
.badge.viewers {
right: 0;
}
.badge.live.offline {
2018-08-06 13:16:24 +00:00
background-color: rgba(93, 93, 93, 0.7);
}
.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
opacity: 1;
}
.overlay.hidden {
opacity: 0;
cursor: none;
}
.controls {
background-color: rgba(0, 142, 255, 0.42);
border-top: 2px solid #006cc1;
color: white;
height: 45px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
2019-04-17 09:29:18 +00:00
display: flex;
2018-08-06 13:16:24 +00:00
}
2019-04-17 09:29:18 +00:00
.controls .button {
font-size: 2rem;
2018-08-06 13:16:24 +00:00
width: 40px;
cursor: pointer;
padding: 4px;
}
2019-04-17 09:29:18 +00:00
.flex-divider {
flex-grow: 1;
2018-08-06 13:16:24 +00:00
}
2019-04-17 09:29:18 +00:00
#duration {
line-height: 2.6;
font-size: 1.1rem;
2018-08-06 13:16:24 +00:00
display: inline-block;
}
.bigplaybtn {
color: #fff;
font-size: 400%;
position: absolute;
2019-04-17 09:29:18 +00:00
top: 0;
left: 0;
right: 0;
bottom: 0;
2018-08-06 13:16:24 +00:00
margin: auto;
width: 80px;
height: 80px;
line-height: 1.2;
background-color: rgba(3, 169, 244, 0.7);
padding: 10px;
border-radius: 100%;
border: 5px dotted #2196F3;
text-align: right;
cursor: pointer;
}
.bigplaybtn .fa {
top: 6px;
position: relative;
left: 3px;
}
.bigplaybtn.hidden {
2019-04-17 09:29:18 +00:00
display: none;
}
.seekview {
display: flex;
padding-right: 0.5rem;
2018-08-06 13:16:24 +00:00
}
.seekview .seeker {
display: none;
width: 120px;
height: 10px;
background-color: #9be0ff;
cursor: pointer;
2019-04-17 09:29:18 +00:00
margin: auto;
2018-08-06 13:16:24 +00:00
}
.seeker .seekbar {
background-color: #00b0ff;
height: 10px;
}
.seekview:hover > .seeker {
display: inline-block;
}
2019-10-23 10:43:31 +00:00
.overlay-list {
background-color: hsla(0, 0%, 12%, 0.75);
position: absolute;
}
.overlay-list.links a {
padding: 10px;
color: #fff;
font-size: 1.1em;
display: block;
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
}