bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/external-video-player/volume-slider/styles.js

38 lines
578 B
JavaScript
Raw Normal View History

import styled from 'styled-components';
const Slider = styled.div`
width: 0.9em;
display: flex;
2022-04-09 02:39:05 +08:00
position: absolute;
bottom: 2.5em;
2021-03-06 04:06:50 +08:00
left: 1em;
padding: 0.25rem 0.5rem;
min-width: 200px;
background-color: rgba(0,0,0,0.5);
border-radius: 32px;
& > i {
color: white;
transition: 0.5s;
font-size: 200%;
cursor: pointer;
}
2021-08-06 04:03:43 +08:00
z-index: 2;
`;
const Volume = styled.span`
2021-03-06 04:06:50 +08:00
margin-right: 0.5em;
cursor: pointer;
`;
const VolumeSlider = styled.input`
width: 100%;
cursor: pointer;
`;
export default {
Slider,
Volume,
VolumeSlider,
};