2018-02-22 11:03:48 +11:00
|
|
|
.container-alt {
|
2017-04-13 00:01:59 +10:00
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2023-05-01 19:23:57 +10:00
|
|
|
@media screen and (width <= 740px) {
|
2017-04-13 00:01:59 +10:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-container {
|
2022-10-06 03:57:33 +11:00
|
|
|
margin: 50px auto;
|
2017-04-13 00:01:59 +10:00
|
|
|
|
|
|
|
h1 {
|
2017-07-11 23:27:59 +10:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-04-13 00:01:59 +10:00
|
|
|
|
2022-06-10 06:25:23 +10:00
|
|
|
.logo {
|
2017-07-23 10:40:39 +10:00
|
|
|
height: 42px;
|
2023-03-27 19:56:25 +11:00
|
|
|
margin-inline-end: 10px;
|
2017-04-13 00:01:59 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2017-07-11 23:27:59 +10:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: $primary-text-color;
|
2017-04-13 00:01:59 +10:00
|
|
|
text-decoration: none;
|
|
|
|
outline: 0;
|
2017-07-11 23:27:59 +10:00
|
|
|
padding: 12px 16px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
2017-04-13 00:01:59 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 12:24:58 +10:00
|
|
|
|
2017-08-14 12:53:31 +10:00
|
|
|
.compose-standalone {
|
|
|
|
.compose-form {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
2023-05-01 19:23:57 +10:00
|
|
|
@media screen and (width <= 400px) {
|
2017-08-17 00:48:44 +10:00
|
|
|
width: 100%;
|
2017-08-14 12:53:31 +10:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-05 12:24:58 +10: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-02 02:48:58 +11:00
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px solid $ui-base-color;
|
2017-08-05 12:24:58 +10:00
|
|
|
|
2023-05-01 19:23:57 +10:00
|
|
|
@media screen and (width <= 440px) {
|
2017-08-05 12:24:58 +10:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2023-03-27 19:56:25 +11:00
|
|
|
margin-inline-end: 10px;
|
2017-08-05 12:24:58 +10:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1 1 auto;
|
2018-04-22 05:35:55 +10:00
|
|
|
color: $secondary-text-color;
|
2022-03-02 02:48:58 +11:00
|
|
|
width: calc(100% - 90px);
|
2017-08-05 12:24:58 +10:00
|
|
|
|
|
|
|
.username {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
2017-08-28 08:01:07 +10:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2017-08-05 12:24:58 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logout-link {
|
|
|
|
display: block;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 40px;
|
2023-03-27 19:56:25 +11:00
|
|
|
margin-inline-start: 10px;
|
2017-08-05 12:24:58 +10:00
|
|
|
}
|
|
|
|
}
|