2022-01-21 18:02:27 +00:00
|
|
|
.add-actor-button-container {
|
2022-02-08 14:12:59 +00:00
|
|
|
-moz-mask-image: url(../icons/add-actor.svg);
|
|
|
|
-o-mask-image: url(../icons/add-actor.svg);
|
|
|
|
-webkit-mask-image: url(../icons/add-actor.svg);
|
|
|
|
mask-image: url(../icons/add-actor.svg);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.alert,.alert-danger,.form-error,.form-row-widget-error {
|
2022-01-21 18:02:27 +00:00
|
|
|
align-items: center;
|
|
|
|
background-color: #FF634733;
|
|
|
|
border: solid 2px #ff6347;
|
|
|
|
border-radius: var(--s);
|
|
|
|
display: inline-flex;
|
|
|
|
font-style: italic;
|
2022-01-05 17:39:10 +00:00
|
|
|
justify-content: space-between;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-bottom: 6px;
|
|
|
|
margin-top: 6px;
|
|
|
|
padding: 2px 6px;
|
2022-01-17 21:33:38 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.avatar {
|
|
|
|
border-radius: 2px;
|
|
|
|
height: auto;
|
|
|
|
margin-right: 5px;
|
|
|
|
max-height: 4rem;
|
|
|
|
max-width: 4rem;
|
|
|
|
min-width: var(--xxl);
|
|
|
|
width: 100%;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.button-container {
|
|
|
|
background-color: var(--foreground);
|
|
|
|
border: none !important;
|
|
|
|
display: inline-block;
|
|
|
|
height: var(--unit);
|
2022-01-28 18:21:04 +00:00
|
|
|
width: var(--unit);
|
2022-01-21 18:02:27 +00:00
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
|
|
|
opacity: .33;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.button-container:focus,.button-container:hover {
|
2022-01-21 18:02:27 +00:00
|
|
|
background-color: var(--accent);
|
|
|
|
border: none !important;
|
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
|
|
|
opacity: 1;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.button-container:not(:first-of-type) {
|
|
|
|
margin-left: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.container-block {
|
2022-01-05 17:39:10 +00:00
|
|
|
display: block;
|
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.container-grid {
|
|
|
|
display: grid;
|
2022-01-21 19:51:13 +00:00
|
|
|
gap: var(--s);
|
2022-02-16 21:17:13 +00:00
|
|
|
grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
|
2022-01-17 21:33:38 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.details-subtitle-summary+* {
|
2022-01-21 18:02:27 +00:00
|
|
|
background: var(--gradient);
|
|
|
|
border-radius: var(--s);
|
|
|
|
padding: 2px 8px;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.details-subtitle-summary a,.details-title-summary a {
|
2022-01-21 18:02:27 +00:00
|
|
|
line-height: initial;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.details-subtitle-summary svg:last-child,.details-title-summary svg:last-child {
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-left: 4px;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.details-subtitle-summary ~ [class|="form-row"] {
|
|
|
|
padding: var(--s);
|
2021-12-06 22:22:23 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.footer ul {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.footer ul li {
|
|
|
|
margin-right: var(--s);
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: var(--s);
|
2022-01-19 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-row-help {
|
|
|
|
font-style: italic;
|
|
|
|
margin-bottom: unset;
|
2022-01-17 21:33:38 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-row-widget {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-search {
|
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: var(--m);
|
|
|
|
padding: unset !important;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.form-search span label {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.form-search span .form-row {
|
|
|
|
margin-bottom: unset;
|
|
|
|
flex: 2;
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-search span {
|
|
|
|
display: inline-flex;
|
|
|
|
width: 100%;
|
2022-01-05 17:39:10 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-search span button {
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-left: none !important;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
height: 100%;
|
|
|
|
margin: unset;
|
2022-02-16 21:17:13 +00:00
|
|
|
flex: 1;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.form-search span input[type='text'] {
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
height: 100%;
|
|
|
|
margin: unset;
|
2021-12-25 17:31:16 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
.frame-section {
|
2022-02-08 14:12:59 +00:00
|
|
|
background-color: var(--background-card);
|
|
|
|
border: 1px solid var(--border);
|
2022-01-21 18:02:27 +00:00
|
|
|
border-radius: var(--s);
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-01 16:37:28 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-02-16 21:17:13 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
.frame-section hr {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.frame-section-button-like {
|
|
|
|
align-self: end;
|
|
|
|
background: var(--gradient);
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
border-radius: var(--s);
|
|
|
|
display: block;
|
2022-02-16 21:17:13 +00:00
|
|
|
font-family: 'Poppins',sans-serif;
|
2022-02-07 23:54:29 +00:00
|
|
|
font-weight: 900;
|
2022-01-21 18:02:27 +00:00
|
|
|
padding: 6px 8px;
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
.frame-section-padding {
|
2021-12-23 21:29:46 +00:00
|
|
|
padding: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
.frame-section-paging {
|
2021-12-06 22:22:23 +00:00
|
|
|
display: block;
|
2022-02-16 21:17:13 +00:00
|
|
|
font-family: 'Poppins',sans-serif;
|
2022-02-07 23:54:29 +00:00
|
|
|
font-weight: 900;
|
2021-12-06 22:22:23 +00:00
|
|
|
margin-left: auto;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-top: var(--s);
|
|
|
|
padding: 6px 12px;
|
2021-12-06 22:22:23 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
.frame-section-title {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-left: unset;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile {
|
|
|
|
background: var(--gradient) !important;
|
|
|
|
border: 1px solid var(--border);
|
2021-12-25 17:31:16 +00:00
|
|
|
border-radius: var(--s);
|
2022-02-16 21:17:13 +00:00
|
|
|
font-family: 'Open Sans',sans-serif;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-bottom: var(--s);
|
|
|
|
padding: var(--unit);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile header {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
vertical-align: middle;
|
2021-12-25 17:31:16 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-bio {
|
|
|
|
margin-top: 4px;
|
2021-12-25 17:31:16 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.profile-bio,.profile-info-url {
|
2022-01-21 18:02:27 +00:00
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-extra-actions {
|
2022-02-16 21:17:13 +00:00
|
|
|
background: var(--gradient),var(--background-hard);
|
2022-01-21 18:02:27 +00:00
|
|
|
border: 1px solid var(--border);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2022-01-21 18:02:27 +00:00
|
|
|
display: inline-block;
|
2022-02-07 23:54:29 +00:00
|
|
|
font-weight: 900;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-right: var(--s);
|
|
|
|
margin-top: var(--s);
|
|
|
|
padding: 4px 8px;
|
2021-12-07 15:33:02 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-info {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-12-07 15:33:02 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-info .avatar {
|
|
|
|
flex: .5;
|
2022-01-12 16:07:28 +00:00
|
|
|
}
|
2022-01-12 16:42:33 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-info section {
|
|
|
|
flex: 1;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-info-url {
|
|
|
|
display: block;
|
2022-01-12 16:07:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.profile-info-url>* {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
2022-01-12 16:07:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 03:01:25 +00:00
|
|
|
.profile-info-url strong {
|
2022-02-07 23:54:29 +00:00
|
|
|
font-size: 1.215rem;
|
|
|
|
font-weight: 900;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-info-url-remote {
|
|
|
|
opacity: .66;
|
2021-12-08 15:16:30 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.profile-navigation>* {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
2021-12-25 17:31:16 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-stats {
|
|
|
|
align-self: center;
|
|
|
|
margin-left: auto;
|
|
|
|
opacity: .66;
|
|
|
|
text-align: right;
|
2021-12-23 21:29:46 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.profile-stats-subscribers strong,.profile-stats-subscriptions strong {
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-right: 4px;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.profile-stats-subscribers,.profile-stats-subscriptions {
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
2022-01-07 21:10:55 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.profile-tags {
|
|
|
|
margin: 4px unset unset;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.remove-actor-button-container {
|
2022-02-08 14:12:59 +00:00
|
|
|
-moz-mask-image: url(../icons/remove-actor.svg);
|
|
|
|
-o-mask-image: url(../icons/remove-actor.svg);
|
|
|
|
-webkit-mask-image: url(../icons/remove-actor.svg);
|
|
|
|
mask-image: url(../icons/remove-actor.svg);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
section {
|
|
|
|
margin-bottom: var(--s);
|
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-details-subtitle .section-details-subtitle:not(:last-of-type) {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-details-subtitle summary {
|
|
|
|
padding: 2px 8px;
|
2021-11-16 19:40:07 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 23:42:44 +00:00
|
|
|
.section-details-subtitle summary,.section-details-title summary {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle summary>*,.section-details-title summary>* {
|
2022-02-16 23:42:44 +00:00
|
|
|
display: inline-block;
|
2021-12-25 17:31:16 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle summary>:last-child,.section-details-title summary>:last-child {
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-right: 4px;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle summary,.section-details-title summary {
|
2022-01-21 18:02:27 +00:00
|
|
|
background: var(--gradient);
|
|
|
|
border-radius: var(--s);
|
2022-02-16 23:42:44 +00:00
|
|
|
display: block;
|
2022-01-21 18:02:27 +00:00
|
|
|
width: 100%;
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle:not(:last-of-type) {
|
|
|
|
margin-bottom: var(--s);
|
2022-02-08 14:22:52 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 19:46:47 +00:00
|
|
|
.details-summary-title {
|
|
|
|
line-height: initial;
|
2022-02-07 23:54:29 +00:00
|
|
|
font-size: 1.215rem;
|
|
|
|
font-weight: 900;
|
|
|
|
padding: 6px 8px;
|
2022-01-23 19:46:47 +00:00
|
|
|
}
|
2022-02-16 21:17:13 +00:00
|
|
|
|
2022-01-23 19:46:47 +00:00
|
|
|
.details-summary-subtitle {
|
2022-02-07 23:54:29 +00:00
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading-no-margin {
|
|
|
|
font-size: 1.215rem;
|
|
|
|
font-weight: 900;
|
2022-01-23 19:46:47 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.details-summary-title:after {
|
2022-02-16 23:42:44 +00:00
|
|
|
content: "\1F817";
|
2022-02-07 02:46:08 +00:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
2022-01-21 18:02:27 +00:00
|
|
|
float: right;
|
|
|
|
}
|
2022-02-16 21:17:13 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.details-summary-subtitle:after {
|
2022-02-16 23:42:44 +00:00
|
|
|
content: "\1F815";
|
2022-02-07 02:46:08 +00:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
2022-01-21 18:02:27 +00:00
|
|
|
float: right;
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle:not([open])>.details-summary-subtitle:after {
|
|
|
|
animation: fadeOut 200ms cubic-bezier(0,0.55,0.45,1);
|
2022-02-16 23:42:44 +00:00
|
|
|
content: "\1F817";
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-subtitle[open]>.details-summary-subtitle:after {
|
|
|
|
animation: fadeIn 200ms cubic-bezier(0,0.55,0.45,1);
|
2022-01-21 18:02:27 +00:00
|
|
|
transform: initial;
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-title:not([open])>.details-summary-title:after {
|
|
|
|
animation: fadeIn 200ms cubic-bezier(0,0.55,0.45,1);
|
2022-01-21 18:02:27 +00:00
|
|
|
transform: initial;
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 21:17:13 +00:00
|
|
|
.section-details-title[open]>.details-summary-title:after {
|
|
|
|
animation: fadeOut 200ms cubic-bezier(0,0.55,0.45,1);
|
2022-02-16 23:42:44 +00:00
|
|
|
content: "\1F815";
|
2022-01-17 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-form {
|
2022-02-08 14:12:59 +00:00
|
|
|
background-color: var(--background-card);
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2022-01-21 18:02:27 +00:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: var(--s);
|
|
|
|
width: 100%;
|
2022-01-19 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-form-legend {
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: var(--s);
|
|
|
|
margin-top: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
2022-02-16 23:42:44 +00:00
|
|
|
margin-top: 0;
|
2022-02-16 21:17:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-checkbox-flex {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-checkbox-flex>* {
|
|
|
|
margin-right: var(--m);
|
2022-01-21 18:02:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea.form-row-widget {
|
|
|
|
height: 7rem;
|
|
|
|
resize: vertical;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|