docbrown/app/assets/stylesheets/shared.scss
Ben Halpern c0a7c17054
Modify podcast design details and functionality (#5472) [deploy]
* Modify podcast design details and functionality

* Adjust play button size

* Add heroku slug commit to some cache keys
2020-01-14 13:56:47 -05:00

222 lines
4.7 KiB
SCSS

@import 'variables';
#audiocontent {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 15;
font-family: $helvetica;
display: block;
#progressBar {
color: #fff;
width: 100%;
height: calc(48px + 1vh);
margin-top: 100px;
position: fixed;
left: 0;
bottom: 0;
right: 0;
text-align: left;
background: rgb(236, 236, 236);
z-index: 19;
display: none;
&.playing {
display: block;
}
#episode-profile-image {
height: calc(48px + 1vh);
width: calc(48px + 1vh);
}
#animated-bars {
position: absolute;
bottom: -12px;
left: -15px;
width: 80px;
opacity: 0.3;
display: none;
&.playing {
display: block;
}
}
#barPlayPause {
height: calc(48px + 1vh);
width: calc(48px + 1vh);
background: rgb(32, 32, 32);
position: absolute;
left: calc(48px + 1vh);
bottom: 0px;
cursor: pointer;
.butt {
width: calc(35px + 0.5vh);
margin: calc(8px + 0.17vh) 7px;
}
.pause-butt {
display: none;
}
&.playing {
.play-butt {
display: none;
}
.pause-butt {
display: block;
}
}
}
.showing {
display: block;
}
.hidden {
display: none;
}
#volume {
height: calc(48px + 1vh);
width: 36px;
background: rgb(32, 32, 32);
position: absolute;
left: calc(100px + 1vh);
bottom: 0px;
cursor: pointer;
img {
padding: 3px;
margin-top: 4px;
margin-left: 4px;
margin-bottom: -11px;
}
#speed {
font-weight: 300;
font-size: calc(12px + 0.2vh);
padding: 3px 0px;
width: 28px;
margin-left: -0.5px;
text-align: center;
margin-top: calc(2px + 0.5vh);
display: block;
user-select: none;
background: transparent;
color: rgb(201, 201, 201);
}
.volume-icon-wrapper {
padding: 1px 0px;
}
#volumeindicator {
.range-wrapper {
position: absolute;
top: 0px;
left: 26px;
background: rgb(32, 32, 32);
z-index: 30;
width: 0;
overflow: hidden;
transition: width 200ms ease-out 95ms;
padding: 8px 0px 5px;
text-align: center;
input {
width: 80%;
cursor: pointer;
}
}
@media screen and (min-width: 430px) {
&:hover {
.range-wrapper {
width: 170px;
}
}
}
}
}
.buffer-wrapper {
height: calc(48px + 1vh);
position: absolute;
left: calc(136px + 1vh);
right: 0;
bottom: 0;
cursor: pointer;
#progress {
background-color: #00ffa3;
height: calc(48px + 1vh);
display: inline-block;
position: relative;
z-index: 23;
transition: width 0.25s ease-in-out;
}
#buffer {
background-color: #96ffd9;
height: calc(48px + 1vh);
display: inline-block;
position: absolute;
bottom: 0;
z-index: 22;
transition: width 0.15s ease-in-out;
}
#time {
position: absolute;
right: calc(50px + 0.1vh + 1.5vw);
top: calc(16px + 0.1vh);
z-index: 23;
color: rgb(161, 161, 161);
font-size: calc(14px + 0.2vh);
background: rgba(236, 236, 236, 0.74);
padding: 2px;
}
#closebutt {
position: absolute;
user-select: none;
right: 0;
top: 0;
bottom: 0;
background: white;
border-left: rgba(236, 236, 236, 1);
margin: 0px;
padding: 0px;
padding-top: calc(8px + 0.2vh);
color: #535353;
font-size: 13.5px;
z-index: 25;
width: calc(42px + 0.1vh + 1.5vw);
text-align: center;
transition: all 0.3s ease 0s;
white-space: nowrap;
font-size: calc(25px + 0.2vh);
&:hover {
color: #ff4343;
}
}
}
}
}
.navigation-progress {
position: fixed;
top: 0;
left: -20%;
background: $green;
z-index: 100;
height: 43px;
width: 0%;
&.showing {
display: block;
width: 140%;
animation: grow-width 3200ms ease-out, pulsate 1.4s infinite ease-in-out;
}
}
@keyframes grow-width {
0% {
width: 0%;
}
100% {
width: 140%;
}
}
.global-notice {
font-family: $helvetica;
background: $green;
color: black;
padding: 20px 0px 20px;
text-align: center;
position: relative;
top: 0px;
left: 0px;
right: 0px;
}