2021-10-06 00:03:17 +09:00
|
|
|
.profile {
|
2021-11-15 23:44:24 +09:00
|
|
|
font-family: 'Open Sans',sans-serif;
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-bottom: var(--s);
|
2022-01-06 02:39:10 +09:00
|
|
|
border: 2px solid var(--border);
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2022-01-06 02:39:10 +09:00
|
|
|
padding: var(--unit);
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient) !important;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
vertical-align: middle;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
.profile-info {
|
|
|
|
display: flex;
|
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-info-url {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.profile-info-url-nickname {
|
2021-12-24 06:29:46 +09:00
|
|
|
font-size: var(--m);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-info-url-remote {
|
|
|
|
opacity: 0.66;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-info-url > * {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.profile-stats {
|
|
|
|
align-self: center;
|
|
|
|
margin-left: auto;
|
|
|
|
text-align: right;
|
2022-01-08 06:10:55 +09:00
|
|
|
font-size: 0.937rem;
|
|
|
|
opacity: 0.66;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-stats-subscriptions,
|
|
|
|
.profile-stats-subscribers {
|
|
|
|
display: block;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-stats-subscriptions strong,
|
|
|
|
.profile-stats-subscribers strong {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.profile-info-url,
|
|
|
|
.profile-bio {
|
2021-12-07 07:22:23 +09:00
|
|
|
word-break: break-all;
|
|
|
|
}
|
2022-01-06 02:39:10 +09:00
|
|
|
.profile-bio {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.profile-tags {
|
|
|
|
margin: unset;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.button-container {
|
|
|
|
border: none !important;
|
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
|
|
|
display: inline-block;
|
|
|
|
width: var(--unit);
|
|
|
|
height: var(--unit);
|
|
|
|
background-color: var(--foreground);
|
|
|
|
opacity: 0.33;
|
|
|
|
}
|
|
|
|
.button-container:not(:first-of-type) {
|
|
|
|
margin-left: var(--s);
|
|
|
|
}
|
|
|
|
.button-container:focus,
|
|
|
|
.button-container:hover {
|
|
|
|
border: none !important;
|
|
|
|
mask-repeat: no-repeat !important;
|
|
|
|
mask-size: cover !important;
|
|
|
|
opacity: 1;
|
|
|
|
background-color: var(--accent);
|
|
|
|
}
|
|
|
|
.add-actor-button-container {
|
|
|
|
-o-mask-image: url("../../icons/add-actor.svg");
|
|
|
|
-moz-mask-image: url("../../icons/add-actor.svg");
|
|
|
|
-webkit-mask-image: url("../../icons/add-actor.svg");
|
|
|
|
mask-image: url("../../icons/add-actor.svg");
|
|
|
|
}
|
|
|
|
.remove-actor-button-container {
|
|
|
|
-o-mask-image: url("../../icons/remove-actor.svg");
|
|
|
|
-moz-mask-image: url("../../icons/remove-actor.svg");
|
|
|
|
-webkit-mask-image: url("../../icons/remove-actor.svg");
|
|
|
|
mask-image: url("../../icons/remove-actor.svg");
|
|
|
|
}
|
2021-12-27 13:29:08 +09:00
|
|
|
.avatar {
|
2021-10-06 00:03:17 +09:00
|
|
|
max-width: 4rem;
|
2021-12-03 00:29:46 +09:00
|
|
|
max-height: 4rem;
|
2021-12-24 06:29:46 +09:00
|
|
|
min-width: var(--xxl);
|
2021-10-06 00:03:17 +09:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-right: 5px;
|
2021-11-15 23:44:24 +09:00
|
|
|
border-radius: 2px;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-12-26 02:31:16 +09:00
|
|
|
.section-title {
|
|
|
|
font-weight: 700;
|
2021-12-30 04:31:28 +09:00
|
|
|
margin-bottom: unset;
|
2021-12-26 02:31:16 +09:00
|
|
|
}
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
|
|
|
margin-bottom: var(--m);
|
2021-10-30 06:01:28 +09:00
|
|
|
background-color: var(--background-card) !important;
|
|
|
|
box-shadow: var(--shadow);
|
2021-11-15 22:55:23 +09:00
|
|
|
border: 2px solid var(--border) !important;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-widget hr {
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-bottom: var(--s);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-padding {
|
|
|
|
padding: var(--s);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-12-07 07:22:23 +09:00
|
|
|
.section-widget-paging {
|
|
|
|
display: block;
|
2021-12-26 02:48:07 +09:00
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 6px 12px;
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-top: var(--s);
|
2021-12-07 07:22:23 +09:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-widget-title {
|
|
|
|
margin-left: unset;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-widget-button-like {
|
2021-12-26 02:31:16 +09:00
|
|
|
font-family: 'Poppins', sans-serif;
|
2021-11-15 23:44:24 +09:00
|
|
|
font-weight: 700;
|
2021-12-26 02:31:16 +09:00
|
|
|
display: block;
|
|
|
|
width: max-content;
|
|
|
|
align-self: end;
|
|
|
|
background: var(--gradient);
|
|
|
|
padding: 6px 8px;
|
|
|
|
border-radius: var(--s);
|
|
|
|
border: 2px solid var(--border);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-12-26 02:31:16 +09:00
|
|
|
.section-widget-title-details summary{
|
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
|
|
|
.section-widget-subtitle-details summary {
|
|
|
|
padding: 2px 8px;
|
|
|
|
}
|
|
|
|
.section-widget-subtitle-summary + * {
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-12-08 00:33:02 +09:00
|
|
|
background: var(--gradient);
|
2021-12-26 02:31:16 +09:00
|
|
|
padding: 2px 8px;
|
2021-12-08 00:33:02 +09:00
|
|
|
}
|
2022-01-08 06:10:55 +09:00
|
|
|
.section-form .section-widget-subtitle-details summary {
|
2021-12-08 00:33:02 +09:00
|
|
|
border: 2px solid var(--border);
|
|
|
|
}
|
|
|
|
.section-widget-title-details summary,
|
|
|
|
.section-widget-subtitle-details summary {
|
2021-12-24 06:29:46 +09:00
|
|
|
align-items: center;
|
|
|
|
border-radius: var(--s);
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient) !important;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-12-08 00:33:02 +09:00
|
|
|
.section-widget-subtitle-details[open] svg,
|
2021-12-09 00:16:30 +09:00
|
|
|
.section-widget-title-details[open] .icon-details-open {
|
2021-10-06 00:03:17 +09:00
|
|
|
transform: rotate(180deg);
|
2021-11-15 23:44:24 +09:00
|
|
|
animation: fadeOut 200ms cubic-bezier(0,0.55,0.45,1);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-12-08 00:33:02 +09:00
|
|
|
.section-widget-subtitle-details:not([open]) svg,
|
2021-12-09 00:16:30 +09:00
|
|
|
.section-widget-title-details:not([open]) .icon-details-open {
|
2021-10-06 00:03:17 +09:00
|
|
|
transform: initial;
|
2021-11-15 23:44:24 +09:00
|
|
|
animation: fadeIn 200ms cubic-bezier(0,0.55,0.45,1);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-12-08 00:33:02 +09:00
|
|
|
.section-subtitle-summary,
|
2021-10-06 00:03:17 +09:00
|
|
|
.section-title-summary {
|
|
|
|
display: flex;
|
2021-12-09 00:16:30 +09:00
|
|
|
}
|
2021-12-26 02:31:16 +09:00
|
|
|
.section-subtitle-summary ~ [class|="form-row"] {
|
2022-01-08 06:10:55 +09:00
|
|
|
font-size: 0.937rem;
|
|
|
|
max-font-size: 0.937rem !important;
|
2021-12-26 02:31:16 +09:00
|
|
|
padding: var(--s);
|
|
|
|
}
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-subtitle-summary strong,
|
2021-12-09 00:16:30 +09:00
|
|
|
.section-title-summary h2 {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-subtitle-summary a,
|
|
|
|
.section-title-summary a {
|
|
|
|
line-height: initial;
|
|
|
|
}
|
2021-12-09 00:16:30 +09:00
|
|
|
.section-subtitle-summary svg:last-child,
|
|
|
|
.section-title-summary svg:last-child {
|
|
|
|
margin-left: 4px;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-08 06:10:55 +09:00
|
|
|
.section-widget-subtitle-details .section-widget-subtitle-details:not(:last-of-type) {
|
|
|
|
margin-bottom: var(--s);
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
.section-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-01-08 06:10:55 +09:00
|
|
|
background-color: var(--background-hard);
|
|
|
|
border-radius: var(--s);
|
2021-10-30 02:14:39 +09:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2021-12-24 06:29:46 +09:00
|
|
|
padding: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
.section-form-legend {
|
|
|
|
margin-top: unset;
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-bottom: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-12-26 01:19:46 +09:00
|
|
|
.form-row {
|
2021-12-26 02:31:16 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-24 06:29:46 +09:00
|
|
|
margin-bottom: var(--s);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-12-26 01:19:46 +09:00
|
|
|
.form-row-widget {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-11-17 04:40:07 +09:00
|
|
|
}
|
2021-12-26 02:31:16 +09:00
|
|
|
.form-row-help {
|
|
|
|
margin-bottom: unset;
|
|
|
|
}
|
2021-12-26 01:19:46 +09:00
|
|
|
textarea.form-row-widget {
|
2021-10-02 00:37:28 +09:00
|
|
|
height: 7rem;
|
2021-12-26 01:19:46 +09:00
|
|
|
resize: vertical;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-12-26 01:19:46 +09:00
|
|
|
.form-row-widget-error,
|
|
|
|
.form-error,
|
2021-11-30 03:14:55 +09:00
|
|
|
.alert,
|
|
|
|
.alert-danger {
|
2021-11-24 22:59:46 +09:00
|
|
|
display: inline-block;
|
2021-10-02 00:37:28 +09:00
|
|
|
font-style: italic;
|
2021-11-15 23:44:24 +09:00
|
|
|
border: solid 2px #ff6347;
|
2021-10-02 00:37:28 +09:00
|
|
|
background-color: #FF634733;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: var(--s);
|
2021-10-02 00:37:28 +09:00
|
|
|
padding: 2px 6px;
|
|
|
|
margin-top: 6px;
|
2021-11-15 23:44:24 +09:00
|
|
|
margin-bottom: 6px;
|
2021-12-30 04:31:28 +09:00
|
|
|
}
|
|
|
|
.footer ul {
|
|
|
|
display: inline-flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.footer ul li {
|
|
|
|
margin-right: 5px;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|