108 lines
2.5 KiB
Plaintext
108 lines
2.5 KiB
Plaintext
// out: false, sourceMap: false, main: ../style.less
|
|
@import "colors.less";
|
|
@header-height: 80px;
|
|
@header-button-size: 44px;
|
|
#app>header {
|
|
display: flex;
|
|
flex-direction: row nowrap;
|
|
align-items: center;
|
|
height: @header-height;
|
|
width: 100%;
|
|
position: absolute;
|
|
z-index: 200;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
button {
|
|
font-size: 28px;
|
|
justify-content: center;
|
|
display: flex;
|
|
margin: 0 9px;
|
|
background-color: @color-header-button-background-color;
|
|
box-shadow: @color-header-button-box-shadow;
|
|
border-radius: @header-button-size /2;
|
|
border: none;
|
|
height: @header-button-size;
|
|
min-width: @header-button-size;
|
|
cursor: pointer;
|
|
color: @color-darkish-blue;
|
|
}
|
|
button>img {
|
|
margin: auto;
|
|
height: @header-button-size/2;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
button>img.h-20 {
|
|
height: 20px;
|
|
}
|
|
button>img.h-24 {
|
|
height: 24px;
|
|
}
|
|
button .machine-info small {
|
|
display: block;
|
|
text-align: left;
|
|
margin-left: 5px;
|
|
font-family: 'Work Sans', sans-serif;
|
|
font-size: 11px;
|
|
}
|
|
button.red {
|
|
background-color: @color-scarlet;
|
|
color: white;
|
|
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.4), inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
|
|
}
|
|
button.blue {
|
|
background-color: @color-clear-blue;
|
|
color: white;
|
|
}
|
|
button.dark-blue {
|
|
background-color: @color-darkish-blue;
|
|
color: white;
|
|
}
|
|
button.gray{
|
|
background-color: @color-greyish-brown;
|
|
color:white;
|
|
}
|
|
button.profile {
|
|
width: @header-button-size;
|
|
background-image: url(../profile.png);
|
|
background-size: cover;
|
|
}
|
|
|
|
&.turn-up .user-info time {
|
|
color:#fff;
|
|
}
|
|
.user-info {
|
|
display: flex;
|
|
position: absolute;
|
|
right: 12px;
|
|
font-size: 25px;
|
|
color: @color-input-light;
|
|
.window-buttons,
|
|
time {
|
|
transition: color 200ms ease-in-out;
|
|
margin-left: 10px;
|
|
padding: 0 18px;
|
|
border-left: 2px solid #bbbcbc;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
i {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
.window-buttons {
|
|
position: relative;
|
|
padding-right: 8px !important;
|
|
i {
|
|
margin: auto !important;
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
}
|
|
.close{
|
|
font-size:32px;
|
|
}
|
|
}
|
|
}
|