164 lines
2.7 KiB
Plaintext
164 lines
2.7 KiB
Plaintext
/*!
|
|
* # Semantic UI - Video
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Theme
|
|
*******************************/
|
|
|
|
@type : 'module';
|
|
@element : 'embed';
|
|
|
|
@import (multiple) '../../theme.config';
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
.ui.embed {
|
|
position: relative;
|
|
position: relative;
|
|
max-width: 100%;
|
|
height: 0px;
|
|
overflow: hidden;
|
|
background: @background;
|
|
padding-bottom: @widescreenRatio;
|
|
}
|
|
|
|
/*-----------------
|
|
Embedded Content
|
|
------------------*/
|
|
|
|
.ui.embed iframe,
|
|
.ui.embed embed,
|
|
.ui.embed object {
|
|
position: absolute;
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0px;
|
|
left: 0px;
|
|
margin: 0em;
|
|
padding: 0em;
|
|
}
|
|
|
|
/*-----------------
|
|
Embed
|
|
------------------*/
|
|
|
|
.ui.embed > .embed {
|
|
display: none;
|
|
}
|
|
|
|
/*--------------
|
|
Placeholder
|
|
---------------*/
|
|
|
|
.ui.embed > .placeholder {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0px;
|
|
left: 0px;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: @placeholderBackground;
|
|
}
|
|
|
|
/*--------------
|
|
Icon
|
|
---------------*/
|
|
|
|
.ui.embed > .icon {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
}
|
|
.ui.embed > .icon:after {
|
|
position: absolute;
|
|
top: 0%;
|
|
left: 0%;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 3;
|
|
content: '';
|
|
background: @placeholderBackground;
|
|
opacity: @placeholderBackgroundOpacity;
|
|
transition: @placeholderBackgroundTransition;
|
|
}
|
|
.ui.embed > .icon:before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
z-index: 4;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
color: @iconColor;
|
|
font-size: @iconSize;
|
|
text-shadow: @iconShadow;
|
|
transition: @iconTransition;
|
|
z-index: @iconZIndex;
|
|
}
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
/*--------------
|
|
Hover
|
|
---------------*/
|
|
|
|
.ui.embed .icon:hover:after {
|
|
background: @hoverPlaceholderBackground;
|
|
opacity: @hoverPlaceholderBackgroundOpacity;
|
|
}
|
|
.ui.embed .icon:hover:before {
|
|
color: @hoverIconColor;
|
|
}
|
|
|
|
/*--------------
|
|
Active
|
|
---------------*/
|
|
|
|
.ui.active.embed > .icon,
|
|
.ui.active.embed > .placeholder {
|
|
display: none;
|
|
}
|
|
.ui.active.embed > .embed {
|
|
display: block;
|
|
}
|
|
|
|
.loadUIOverrides();
|
|
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
.ui.square.embed {
|
|
padding-bottom: @squareRatio;
|
|
}
|
|
.ui[class*="4:3"].embed {
|
|
padding-bottom: @standardRatio;
|
|
}
|
|
.ui[class*="16:9"].embed {
|
|
padding-bottom: @widescreenRatio;
|
|
}
|
|
.ui[class*="21:9"].embed {
|
|
padding-bottom: @ultraWidescreenRatio;
|
|
}
|
|
|
|
|
|
|