2013-10-19 19:46:06 +00:00
|
|
|
@import "client/common.css.scss";
|
|
|
|
|
|
2013-10-19 18:50:19 +00:00
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
|
float:left;
|
|
|
|
|
width:247px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#profile {
|
2014-01-14 07:49:21 +00:00
|
|
|
float: right;
|
|
|
|
|
height: 54px;
|
2014-01-31 06:39:09 +00:00
|
|
|
margin-top: 30px;
|
2014-01-14 07:49:21 +00:00
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-19 19:46:06 +00:00
|
|
|
.signin {
|
2014-01-14 07:49:21 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
|
cursor: auto;
|
2013-10-19 19:46:06 +00:00
|
|
|
}
|
2013-10-19 18:50:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar_large {
|
|
|
|
|
float:left;
|
|
|
|
|
padding:2px;
|
|
|
|
|
width:54px;
|
|
|
|
|
height:54px;
|
|
|
|
|
background-color: $ColorScreenPrimary;
|
|
|
|
|
-webkit-border-radius:28px;
|
|
|
|
|
-moz-border-radius:28px;
|
|
|
|
|
border-radius:28px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar_large img {
|
|
|
|
|
width:54px;
|
|
|
|
|
height:54px;
|
|
|
|
|
-webkit-border-radius:26px;
|
|
|
|
|
-moz-border-radius:26px;
|
|
|
|
|
border-radius:26px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 07:49:21 +00:00
|
|
|
.user {
|
2013-10-19 18:50:19 +00:00
|
|
|
margin:18px 0px 0px 10px;
|
|
|
|
|
font-size:20px;
|
|
|
|
|
font-weight:200;
|
|
|
|
|
color:#ccc;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.arrow-down {
|
|
|
|
|
float:left;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
margin-left:16px;
|
|
|
|
|
margin-top:26px;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
border-top: 8px solid #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo ul {
|
|
|
|
|
clear:both;
|
|
|
|
|
background: scale-lightness($ColorUIBackground, 10%);
|
|
|
|
|
display:none;
|
2013-10-19 19:46:06 +00:00
|
|
|
position:relative;
|
2013-10-19 18:50:19 +00:00
|
|
|
}
|
2013-10-19 19:46:06 +00:00
|
|
|
|
2013-10-19 18:50:19 +00:00
|
|
|
.userinfo li {
|
|
|
|
|
display:block;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
background: scale-lightness($ColorUIBackground, 20%);
|
|
|
|
|
}
|
|
|
|
|
|