2016-07-28 05:50:35 +08:00
|
|
|
@import "../../stylesheets/variables/_all";
|
2016-05-21 00:29:55 +08:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
padding: $line-height-computed / 2;
|
|
|
|
display: flex;
|
2016-07-28 05:50:35 +08:00
|
|
|
flex-direction: row;
|
2016-05-21 00:29:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.left,
|
|
|
|
.right,
|
2016-06-24 22:48:09 +08:00
|
|
|
.center,
|
|
|
|
.record {
|
2016-05-21 00:29:55 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
margin: 0 $line-height-computed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.left,
|
2016-06-24 22:48:09 +08:00
|
|
|
.right,
|
|
|
|
.record {
|
2016-05-21 00:29:55 +08:00
|
|
|
flex: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
2016-06-24 22:48:09 +08:00
|
|
|
width:70%;
|
2016-07-28 05:50:35 +08:00
|
|
|
flex: 1;
|
2016-05-21 00:29:55 +08:00
|
|
|
}
|
|
|
|
|
2016-07-28 05:50:35 +08:00
|
|
|
.presentationTitle {
|
2016-05-21 00:29:55 +08:00
|
|
|
font-weight: 200;
|
|
|
|
color: $color-white;
|
|
|
|
font-size: $font-size-base * 1.2;
|
|
|
|
margin: 0;
|
2016-07-28 05:50:35 +08:00
|
|
|
padding: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2016-06-07 22:33:22 +08:00
|
|
|
|
2016-06-18 06:15:11 +08:00
|
|
|
.divideBar {
|
|
|
|
color: $color-white;
|
|
|
|
font-size: $font-size-base * 1.2;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.recordImage {
|
|
|
|
margin-left: -5px;
|
|
|
|
}
|
|
|
|
|
2016-10-05 03:23:43 +08:00
|
|
|
.msgFlag{
|
|
|
|
margin-left: -34px;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
|
2016-10-12 01:36:28 +08:00
|
|
|
.withdot {
|
|
|
|
content: '';
|
|
|
|
position: relative;
|
|
|
|
left: 20px;
|
|
|
|
top: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
2016-07-12 01:01:09 +08:00
|
|
|
.hidden {
|
|
|
|
position:absolute;
|
|
|
|
left:-10000px;
|
|
|
|
top:auto;
|
|
|
|
width:1px;
|
|
|
|
height:1px;
|
|
|
|
overflow:hidden;
|
|
|
|
}
|
2016-09-08 03:17:15 +08:00
|
|
|
|
2016-10-05 03:23:43 +08:00
|
|
|
.btn{
|
2016-10-12 01:36:28 +08:00
|
|
|
position: absolute;
|
2016-10-05 03:23:43 +08:00
|
|
|
span {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-08 03:17:15 +08:00
|
|
|
.settingBtn {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
span {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|