2018-02-22 00:03:48 +00:00
|
|
|
.container-alt {
|
2017-04-12 14:01:59 +00:00
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2023-05-07 13:04:59 +00:00
|
|
|
@media screen and (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;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 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 {
|
|
|
|
.compose-form {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
2023-05-07 13:04:59 +00:00
|
|
|
@media screen and (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
|
|
|
|
2023-05-07 13:04:59 +00:00
|
|
|
@media screen and (width <= 440px) {
|
2017-08-05 02:24:58 +00:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-end: 10px;
|
2017-08-05 02:24:58 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1 1 auto;
|
2018-04-21 19:35:55 +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;
|
2023-03-27 08:56:25 +00:00
|
|
|
margin-inline-start: 10px;
|
2017-08-05 02:24:58 +00:00
|
|
|
}
|
|
|
|
}
|