45 lines
700 B
Stylus
45 lines
700 B
Stylus
@import "{design}/app.styl"
|
|
|
|
$borderColor = rgba(77, 99, 110, 0.81)
|
|
|
|
#cineDialog
|
|
display: none
|
|
z-index: 1000
|
|
position: absolute
|
|
top: auto
|
|
left: auto
|
|
bottom: 3px
|
|
right: 3px
|
|
|
|
overflow: hidden
|
|
padding: 10px
|
|
width: 300px
|
|
height: 175px
|
|
|
|
opacity: 0.95
|
|
border-radius: 8px
|
|
border: 1px solid $borderColor;
|
|
background: $uiGrayDarkest
|
|
color: $textSecondaryColor
|
|
|
|
h5, label
|
|
font-weight: 100
|
|
|
|
box-sizing: border-box
|
|
|
|
.btn
|
|
background: $uiGrayDarkest
|
|
color: $textSecondaryColor
|
|
|
|
&:hover
|
|
color: $hoverColor
|
|
|
|
&:active, &.active
|
|
color: $activeColor
|
|
|
|
#cineOptions
|
|
padding: 5px 0
|
|
overflow: auto
|
|
|
|
#loopSection
|
|
padding-right: 12px |