2016-12-13 12:42:10 +00:00
|
|
|
.admin-wrapper {
|
2017-01-28 02:56:10 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2016-12-13 12:42:10 +00:00
|
|
|
height: 100%;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
|
|
|
.sidebar-wrapper {
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
2017-05-08 13:57:49 +00:00
|
|
|
background: $ui-base-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 240px;
|
|
|
|
height: 100%;
|
2017-04-19 12:30:23 +00:00
|
|
|
padding: 0;
|
|
|
|
overflow-y: auto;
|
2017-05-07 18:47:31 +00:00
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.logo {
|
|
|
|
display: block;
|
|
|
|
margin: 40px auto;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
overflow: hidden;
|
2017-04-19 12:30:23 +00:00
|
|
|
margin-bottom: 20px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2017-09-02 13:49:28 +00:00
|
|
|
padding: 15px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: rgba($primary-text-color, 0.7);
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
transition: all 200ms linear;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 4px 0 0 4px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
i.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
background-color: darken($ui-base-color, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
transition: all 100ms linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: darken($ui-base-color, 2%);
|
2017-05-07 18:47:31 +00:00
|
|
|
border-radius: 4px 0 0;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
2017-05-08 13:57:49 +00:00
|
|
|
background: darken($ui-base-color, 4%);
|
2017-01-28 02:56:10 +00:00
|
|
|
border-radius: 0 0 0 4px;
|
2017-04-19 12:30:23 +00:00
|
|
|
margin: 0;
|
2017-01-28 02:56:10 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
border: 0;
|
2017-09-02 13:49:28 +00:00
|
|
|
padding: 15px 35px;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
&.selected {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
background-color: $ui-highlight-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
background-color: lighten($ui-highlight-color, 5%);
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:56:10 +00:00
|
|
|
.content-wrapper {
|
|
|
|
flex: 2;
|
2017-02-14 23:22:58 +00:00
|
|
|
overflow: auto;
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 12:42:10 +00:00
|
|
|
.content {
|
2017-01-28 02:56:10 +00:00
|
|
|
max-width: 700px;
|
|
|
|
padding: 20px 15px;
|
|
|
|
padding-top: 60px;
|
|
|
|
padding-left: 25px;
|
|
|
|
|
|
|
|
h2 {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $ui-secondary-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
2017-09-12 21:06:10 +00:00
|
|
|
h3 {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2017-06-14 16:01:27 +00:00
|
|
|
h6 {
|
|
|
|
font-size: 16px;
|
2017-09-02 13:49:28 +00:00
|
|
|
color: $ui-secondary-color;
|
2017-06-14 16:01:27 +00:00
|
|
|
line-height: 28px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2017-02-16 23:42:52 +00:00
|
|
|
& > p {
|
2017-01-28 02:56:10 +00:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $ui-secondary-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
strong {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
2017-01-28 02:56:10 +00:00
|
|
|
font-weight: 500;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 20px 0;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
2017-05-08 13:57:49 +00:00
|
|
|
border-bottom: 1px solid $ui-base-color;
|
2018-04-11 17:15:42 +00:00
|
|
|
|
|
|
|
&.section-break {
|
|
|
|
margin: 30px 0;
|
|
|
|
border-bottom: 2px solid $ui-base-lighter-color;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
2017-06-14 16:01:27 +00:00
|
|
|
|
|
|
|
.muted-hint {
|
2017-09-02 13:49:28 +00:00
|
|
|
color: $ui-primary-color;
|
2017-06-14 16:01:27 +00:00
|
|
|
|
|
|
|
a {
|
2017-09-02 13:49:28 +00:00
|
|
|
color: $ui-highlight-color;
|
2017-06-14 16:01:27 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-25 21:51:46 +00:00
|
|
|
|
|
|
|
.positive-hint {
|
|
|
|
color: $valid-value-color;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2017-01-28 02:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.simple_form {
|
|
|
|
max-width: 400px;
|
2017-05-07 18:47:31 +00:00
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
&.edit_user,
|
|
|
|
&.new_form_admin_settings,
|
|
|
|
&.new_form_two_factor_confirmation,
|
|
|
|
&.new_form_delete_confirmation,
|
|
|
|
&.new_import,
|
|
|
|
&.new_domain_block,
|
|
|
|
&.edit_domain_block {
|
|
|
|
max-width: none;
|
|
|
|
}
|
2017-05-07 18:47:31 +00:00
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
.form_two_factor_confirmation_code,
|
|
|
|
.form_delete_confirmation_password {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
max-width: 400px;
|
2017-04-18 15:25:44 +00:00
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
2017-01-28 20:57:03 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
display: block;
|
|
|
|
overflow-y: auto;
|
2017-04-17 08:37:00 +00:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2017-01-28 20:57:03 +00:00
|
|
|
|
2017-05-07 18:47:31 +00:00
|
|
|
.sidebar-wrapper,
|
|
|
|
.content-wrapper {
|
2017-01-28 20:57:03 +00:00
|
|
|
flex: 0 0 auto;
|
|
|
|
height: auto;
|
2017-04-17 08:37:00 +00:00
|
|
|
overflow: initial;
|
2017-01-28 20:57:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px 0;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 20px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.filters {
|
|
|
|
display: flex;
|
2017-09-09 00:26:58 +00:00
|
|
|
flex-wrap: wrap;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.filter-subset {
|
|
|
|
flex: 0 0 auto;
|
2017-09-09 00:26:58 +00:00
|
|
|
margin: 0 40px 10px 0;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-top: 5px;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: rgba($primary-text-color, 0.7);
|
2016-12-13 12:42:10 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 500;
|
2017-05-08 13:57:49 +00:00
|
|
|
border-bottom: 2px solid $ui-base-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
&:hover {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $primary-text-color;
|
|
|
|
border-bottom: 2px solid lighten($ui-base-color, 5%);
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $ui-highlight-color;
|
|
|
|
border-bottom: 2px solid $ui-highlight-color;
|
2016-12-13 12:42:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
|
2017-12-11 04:24:11 +00:00
|
|
|
.flavour-screen {
|
|
|
|
display: block;
|
|
|
|
margin: 10px auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flavour-description {
|
|
|
|
display: block;
|
|
|
|
font-size: 16px;
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
& > p {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 23:42:52 +00:00
|
|
|
.report-accounts {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
2017-02-16 23:42:52 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-accounts__item {
|
2017-02-17 01:05:15 +00:00
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex: 250px;
|
2017-02-17 01:05:15 +00:00
|
|
|
flex-direction: column;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 5px;
|
2017-02-16 23:42:52 +00:00
|
|
|
|
|
|
|
& > strong {
|
|
|
|
display: block;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 0 10px -5px;
|
2017-02-16 23:42:52 +00:00
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
2017-05-08 13:57:49 +00:00
|
|
|
color: $ui-secondary-color;
|
2018-01-13 18:41:20 +00:00
|
|
|
|
|
|
|
@each $lang in $cjk-langs {
|
|
|
|
&:lang(#{$lang}) {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 01:05:15 +00:00
|
|
|
.account-card {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.report-status,
|
|
|
|
.account-status {
|
2017-02-16 23:42:52 +00:00
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.activity-stream {
|
2017-02-17 01:05:15 +00:00
|
|
|
flex: 2 0 0;
|
2017-02-16 23:42:52 +00:00
|
|
|
margin-right: 20px;
|
2017-09-02 13:49:28 +00:00
|
|
|
max-width: calc(100% - 60px);
|
|
|
|
|
|
|
|
.entry {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.report-status__actions,
|
|
|
|
.account-status__actions {
|
2017-02-16 23:42:52 +00:00
|
|
|
flex: 0 0 auto;
|
2017-06-08 12:58:22 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-05-23 17:45:43 +00:00
|
|
|
|
2017-06-08 12:58:22 +00:00
|
|
|
.icon-button {
|
2017-05-23 17:45:43 +00:00
|
|
|
font-size: 24px;
|
|
|
|
width: 24px;
|
2017-06-08 12:58:22 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
2017-05-23 17:45:43 +00:00
|
|
|
}
|
2017-02-16 23:42:52 +00:00
|
|
|
}
|
2017-07-18 14:38:22 +00:00
|
|
|
|
2018-04-11 17:15:42 +00:00
|
|
|
.report-note__comment {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-note__form {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.report-note__textarea {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 0;
|
|
|
|
padding: 7px 4px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: $ui-base-color;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
outline: 0;
|
|
|
|
font-family: inherit;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-note__buttons {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-note__button {
|
|
|
|
margin: 0 0 5px 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.batch-form-box {
|
|
|
|
display: flex;
|
2017-09-02 13:49:28 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 5px;
|
2017-07-18 14:38:22 +00:00
|
|
|
|
|
|
|
#form_status_batch_action {
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 5px 5px 0;
|
2017-07-18 14:38:22 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2017-09-02 13:49:28 +00:00
|
|
|
input.button {
|
|
|
|
margin: 0 5px 5px 0;
|
|
|
|
}
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
.media-spoiler-toggle-buttons {
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
overflow: visible;
|
2017-09-02 13:49:28 +00:00
|
|
|
margin: 0 0 5px 5px;
|
|
|
|
float: right;
|
2017-07-18 14:38:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.batch-checkbox,
|
|
|
|
.batch-checkbox-all {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $classic-highlight-color;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-16 11:27:26 +00:00
|
|
|
|
|
|
|
.spacer {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-entry {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
background: $ui-base-color;
|
|
|
|
color: $ui-primary-color;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__avatar {
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-09 16:40:14 +00:00
|
|
|
&__content {
|
|
|
|
max-width: calc(100% - 90px);
|
|
|
|
}
|
|
|
|
|
2017-12-16 11:27:26 +00:00
|
|
|
&__title {
|
2018-01-09 16:40:14 +00:00
|
|
|
word-wrap: break-word;
|
2017-12-16 11:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__timestamp {
|
|
|
|
color: lighten($ui-base-color, 34%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__extras {
|
|
|
|
background: lighten($ui-base-color, 6%);
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
padding: 10px;
|
|
|
|
color: $ui-primary-color;
|
|
|
|
font-family: 'mastodon-font-monospace', monospace;
|
|
|
|
font-size: 12px;
|
2018-01-09 16:40:14 +00:00
|
|
|
word-wrap: break-word;
|
2017-12-16 11:27:26 +00:00
|
|
|
min-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
font-size: 28px;
|
|
|
|
margin-right: 10px;
|
|
|
|
color: lighten($ui-base-color, 34%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon__overlay {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
&.positive {
|
|
|
|
background: $success-green;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.negative {
|
|
|
|
background: $error-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.neutral {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
.username,
|
|
|
|
.target {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-old {
|
|
|
|
color: $error-red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-neutral {
|
|
|
|
color: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.diff-new {
|
|
|
|
color: $success-green;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name-tag {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|