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