cloud-ui.vusion
Version:
Vusion Cloud UI
124 lines (106 loc) • 2.09 kB
CSS
$height: 64px;
.root {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 3000;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow: hidden;
background: rgba(0, 0, 0, 0.6);
}
.root:before {
content: "";
height: 100%;
display: inline-block;
vertical-align: middle;
}
.top {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
height: $height;
background: #000;
color: #fff;
z-index: 10;
text-align: center;
font-size: 14px;
line-height: $height;
}
.close {
position: absolute;
top: 0px;
right: 10px;
bottom: 0px;
}
.close:hover { color: #888; }
.close:before {
content:'\00d7';
font-size: 40px;
line-height: $height;
}
.wrapper {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
.root[static] {
position: static;
padding: $margin-base;
}
.button[role='prev']{
transform: rotate(180deg);
transform-origin: 50% 43%;
}
.button[role='prev']:before{
icon-font: url('../u-icon.vue/icons/keyboard-arrow-right.svg');
}
.button[role='next']:before{
icon-font: url('../u-icon.vue/icons/keyboard-arrow-right.svg');
}
.button[role='rotateRight']:before{
icon-font: url('../u-icon.vue/icons/rotate-right.svg');
}
.button[role='rotateLeft']:before{
icon-font: url('../u-icon.vue/icons/rotate-left.svg');
}
.optionsColl{
position: absolute;
left:0;
right:0;
bottom: 0;
height: 60px;
text-align: center;
z-index: 10;
}
.operation {
color: rgba(255,255,255,0.7);
font-size: 60px;
height: 60px;
line-height: 1;
background: rgba(0, 0, 0, 0.2);
border-radius: 30px;
user-select: none;
overflow: hidden;
display: inline-block;
}
.operation > li {
display: inline-block;
float: left;
padding: 0 30px;
}
.operation > li[disabled] {
color: rgba(256, 256, 256, .2);
}
.operation > li:hover {
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.operation > li[disabled]:hover {
cursor: auto;
}