2018-02-23 16:26:48 +00:00
|
|
|
.container-alt {
|
2017-04-12 14:01:59 +00:00
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2017-08-07 18:33:06 +00:00
|
|
|
@media screen and (max-width: 740px) {
|
2017-04-12 14:01:59 +00:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-container {
|
2022-10-05 16:57:33 +00:00
|
|
|
margin: 50px auto;
|
2017-04-12 14:01:59 +00:00
|
|
|
|
|
|
|
h1 {
|
2017-07-11 13:27:59 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-04-12 14:01:59 +00:00
|
|
|
|
2022-06-09 20:25:23 +00:00
|
|
|
.logo {
|
2017-07-23 00:40:39 +00:00
|
|
|
height: 42px;
|
2017-07-11 13:27:59 +00:00
|
|
|
margin-right: 10px;
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2017-07-11 13:27:59 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: $primary-text-color;
|
2017-04-12 14:01:59 +00:00
|
|
|
text-decoration: none;
|
|
|
|
outline: 0;
|
2017-07-11 13:27:59 +00:00
|
|
|
padding: 12px 16px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
2017-04-12 14:01:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 02:24:58 +00:00
|
|
|
|
2017-08-14 02:53:31 +00:00
|
|
|
.compose-standalone {
|
2021-11-12 14:45:36 +00:00
|
|
|
.composer {
|
2017-08-14 02:53:31 +00:00
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
2017-08-16 14:48:44 +00:00
|
|
|
width: 100%;
|
2017-08-14 02:53:31 +00:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-05 02:24:58 +00:00
|
|
|
.account-header {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
2022-03-01 15:48:58 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px solid $ui-base-color;
|
2017-08-05 02:24:58 +00:00
|
|
|
|
2017-08-27 22:01:07 +00:00
|
|
|
@media screen and (max-width: 440px) {
|
2017-08-05 02:24:58 +00:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2018-07-31 21:34:52 +00:00
|
|
|
@include avatar-size(40px);
|
2022-03-01 15:48:58 +00:00
|
|
|
margin-right: 10px;
|
2017-08-05 02:24:58 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
2018-07-31 21:34:52 +00:00
|
|
|
@include avatar-radius();
|
2017-08-05 02:24:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1 1 auto;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $secondary-text-color;
|
2022-03-01 15:48:58 +00:00
|
|
|
width: calc(100% - 90px);
|
2017-08-05 02:24:58 +00:00
|
|
|
|
|
|
|
.username {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
2017-08-27 22:01:07 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2017-08-05 02:24:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logout-link {
|
|
|
|
display: block;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 40px;
|
2022-03-01 15:48:58 +00:00
|
|
|
margin-left: 10px;
|
2017-08-05 02:24:58 +00:00
|
|
|
}
|
|
|
|
}
|