2017-04-12 10:01:59 -04:00
|
|
|
.container {
|
|
|
|
width: 700px;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 40px;
|
|
|
|
|
2017-08-07 14:33:06 -04:00
|
|
|
@media screen and (max-width: 740px) {
|
2017-04-12 10:01:59 -04:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-container {
|
|
|
|
margin: 100px auto;
|
2017-07-11 09:27:59 -04:00
|
|
|
margin-bottom: 50px;
|
2017-04-12 10:01:59 -04:00
|
|
|
|
2017-08-04 22:24:58 -04:00
|
|
|
@media screen and (max-width: 400px) {
|
2017-04-12 10:01:59 -04:00
|
|
|
margin: 30px auto;
|
2017-08-04 22:24:58 -04:00
|
|
|
margin-bottom: 20px;
|
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
|
|
|
|
|
|
|
img {
|
2017-07-22 20:40:39 -04:00
|
|
|
height: 42px;
|
2017-07-11 09:27:59 -04:00
|
|
|
margin-right: 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-family: 'mastodon-font-display', sans-serif;
|
|
|
|
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;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-top: 40px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
2017-08-16 10:48:44 -04:00
|
|
|
width: 100%;
|
2017-08-13 22:53:31 -04:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 22:24:58 -04:00
|
|
|
.account-header {
|
|
|
|
width: 400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: -30px;
|
|
|
|
margin-top: 40px;
|
|
|
|
|
2017-08-27 18:01:07 -04:00
|
|
|
@media screen and (max-width: 440px) {
|
2017-08-04 22:24:58 -04:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 20px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
color: $ui-secondary-color;
|
2017-08-27 18:01:07 -04:00
|
|
|
width: calc(100% - 88px);
|
2017-08-04 22:24:58 -04:00
|
|
|
|
|
|
|
.username {
|
|
|
|
display: block;
|
|
|
|
font-weight: 500;
|
2017-08-27 18:01:07 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2017-08-04 22:24:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.logout-link {
|
|
|
|
display: block;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 40px;
|
2017-08-27 18:01:07 -04:00
|
|
|
margin-left: 8px;
|
2017-08-04 22:24:58 -04:00
|
|
|
}
|
|
|
|
}
|