2018-02-21 19:03:48 -05:00
|
|
|
.container-alt {
|
2017-04-12 10:01:59 -04:00
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2023-05-01 05:23:57 -04:00
|
|
|
@media screen and (width <= 740px) {
|
2017-04-12 10:01:59 -04:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-container {
|
2022-10-05 12:57:33 -04:00
|
|
|
margin: 50px auto;
|
2017-04-12 10:01:59 -04:00
|
|
|
|
|
|
|
h1 {
|
2017-07-11 09:27:59 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-04-12 10:01:59 -04:00
|
|
|
|
2022-06-09 16:25:23 -04:00
|
|
|
.logo {
|
2017-07-22 20:40:39 -04:00
|
|
|
height: 42px;
|
2023-03-27 04:56:25 -04:00
|
|
|
margin-inline-end: 10px;
|
2017-04-12 10:01:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2017-07-11 09:27:59 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: $primary-text-color;
|
2017-04-12 10:01:59 -04:00
|
|
|
text-decoration: none;
|
|
|
|
outline: 0;
|
2017-07-11 09:27:59 -04:00
|
|
|
padding: 12px 16px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
2017-04-12 10:01:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-04 22:24:58 -04:00
|
|
|
|
2017-08-13 22:53:31 -04:00
|
|
|
.compose-standalone {
|
|
|
|
.compose-form {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
2024-01-25 10:41:31 -05:00
|
|
|
padding: 10px 0;
|
|
|
|
padding-bottom: 20px;
|
2017-08-13 22:53:31 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
2023-05-01 05:23:57 -04:00
|
|
|
@media screen and (width <= 400px) {
|
2017-08-16 10:48:44 -04:00
|
|
|
width: 100%;
|
2017-08-13 22:53:31 -04:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 22:24:58 -04:00
|
|
|
.account-header {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
2024-01-25 10:41:31 -05:00
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
2017-08-04 22:24:58 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
2022-03-01 10:48:58 -05:00
|
|
|
margin-bottom: 10px;
|
2024-07-23 11:30:45 -04:00
|
|
|
border-bottom: 1px solid var(--background-border-color);
|
2017-08-04 22:24:58 -04:00
|
|
|
|
2023-05-01 05:23:57 -04:00
|
|
|
@media screen and (width <= 440px) {
|
2017-08-04 22:24:58 -04:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2024-01-25 10:41:31 -05:00
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
flex: 0 0 auto;
|
2017-08-04 22:24:58 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1 1 auto;
|
2018-04-21 15:35:55 -04:00
|
|
|
color: $secondary-text-color;
|
2017-08-04 22:24:58 -04:00
|
|
|
|
|
|
|
.username {
|
|
|
|
display: block;
|
2024-01-25 10:41:31 -05:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
2017-08-27 18:01:07 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2024-01-25 10:41:31 -05:00
|
|
|
color: $primary-text-color;
|
2017-08-04 22:24:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logout-link {
|
|
|
|
display: block;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 40px;
|
2024-01-25 10:41:31 -05:00
|
|
|
flex: 0 0 auto;
|
2017-08-04 22:24:58 -04:00
|
|
|
}
|
|
|
|
}
|
2024-01-24 05:49:19 -05:00
|
|
|
|
|
|
|
.redirect {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100vh;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $highlight-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|