shiori/view/less/variable.less
Radhi Fadlillah 5232e0e2c9 Update UI
2018-05-18 14:07:15 +07:00

57 lines
No EOL
901 B
Text

// out: false
//
// Background
@bg: #EEE;
@darkBg: #353535;
@contentBg: #FFF;
//
// Border
@border: #E5E5E5;
@borderDark: #9E9E9E;
//
// Font color
@color: #232323;
@colorLink: #999;
@colorLight: #EEE;
@fontSize: 0.9em;
//
// Color theme
@main: #F44336;
@mainDark: #B71C1C;
@accent: #f4a236;
//
// Tooltip
@tooltipBg: #232323;
@arrowWidth: 8px;
//
// Other variable
@headerHeight: 60px;
//
// Mixin
.header-link {
border-right: 1px solid @border;
color: @color;
cursor: pointer;
font-size: @fontSize;
line-height: @headerHeight;
overflow: hidden;
padding: 0 16px;
&:hover {
color: @main;
}
}
.full-overlay {
position: fixed;
z-index: 101;
display: flex;
flex-flow: column;
background-color: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
justify-content: center;
padding: 32px;
}