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