55 lines
1.1 KiB
Plaintext
55 lines
1.1 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 {
|
|
display: flex;
|
|
margin: 0 9px;
|
|
background-color: @color-header-button-background-color;
|
|
box-shadow: @color-header-button-box-shadow;
|
|
border-radius: 50%;
|
|
border: none;
|
|
height: @header-button-size;
|
|
width: @header-button-size;
|
|
cursor: pointer;
|
|
color: @color-darkish-blue;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.user-info{
|
|
display: flex;
|
|
position: absolute;
|
|
right: 12px;
|
|
font-size: 25px;
|
|
color:@color-input-light;
|
|
|
|
time{
|
|
padding: 0 18px;
|
|
border-left: 2px solid #bbbcbc;
|
|
}
|
|
}
|
|
}
|