2021-10-05 16:03:17 +01:00
|
|
|
.profile {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
2021-11-15 14:44:24 +00:00
|
|
|
font-family: 'Open Sans',sans-serif;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
|
|
|
border-radius: var(--s);
|
|
|
|
padding: var(--s);
|
2021-10-29 22:01:28 +01:00
|
|
|
background: var(--gradient) !important;
|
2021-11-15 13:55:23 +00:00
|
|
|
box-shadow: var(--shadow);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.profile *[class*="profile-info-"] {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.profile-info {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-11-15 14:44:24 +00:00
|
|
|
flex-direction: column;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.profile-info-nickname {
|
2021-12-23 21:29:46 +00:00
|
|
|
font-size: var(--m);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.profile-info-tags {
|
2021-11-15 14:44:24 +00:00
|
|
|
margin: unset;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.profile-info-stats strong {
|
2021-11-15 14:44:24 +00:00
|
|
|
margin-right: 5px;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.profile-info-stats {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-top: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-12-23 21:29:46 +00:00
|
|
|
.profile-info-bio,
|
|
|
|
.profile-info-nickname {
|
2021-12-06 22:22:23 +00:00
|
|
|
word-break: break-all;
|
|
|
|
}
|
2021-12-27 04:29:08 +00:00
|
|
|
.avatar {
|
2021-10-05 16:03:17 +01:00
|
|
|
max-width: 4rem;
|
2021-12-02 15:29:46 +00:00
|
|
|
max-height: 4rem;
|
2021-12-23 21:29:46 +00:00
|
|
|
min-width: var(--xxl);
|
2021-10-05 16:03:17 +01:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-right: 5px;
|
2021-11-15 14:44:24 +00:00
|
|
|
border-radius: 2px;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-12-25 17:31:16 +00:00
|
|
|
.section-title {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
.section-widget {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
|
|
|
margin-bottom: var(--m);
|
2021-10-29 22:01:28 +01:00
|
|
|
background-color: var(--background-card) !important;
|
|
|
|
box-shadow: var(--shadow);
|
2021-11-15 13:55:23 +00:00
|
|
|
border: 2px solid var(--border) !important;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.section-widget hr {
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-padding {
|
|
|
|
padding: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-06 22:22:23 +00:00
|
|
|
.section-widget-paging {
|
|
|
|
display: block;
|
2021-12-25 17:48:07 +00:00
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 6px 12px;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-top: var(--s);
|
2021-12-06 22:22:23 +00:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-widget-title {
|
|
|
|
margin-left: unset;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
|
|
|
.section-widget-button-like {
|
2021-12-25 17:31:16 +00:00
|
|
|
font-family: 'Poppins', sans-serif;
|
2021-11-15 14:44:24 +00:00
|
|
|
font-weight: 700;
|
2021-12-25 17:31:16 +00: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-05 16:03:17 +01:00
|
|
|
}
|
2021-12-25 17:31:16 +00:00
|
|
|
.section-widget-title-details summary{
|
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
|
|
|
.section-widget-subtitle-details summary {
|
|
|
|
padding: 2px 8px;
|
|
|
|
}
|
|
|
|
.section-widget-subtitle-summary + * {
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2021-12-07 15:33:02 +00:00
|
|
|
background: var(--gradient);
|
2021-12-25 17:31:16 +00:00
|
|
|
padding: 2px 8px;
|
2021-12-07 15:33:02 +00:00
|
|
|
}
|
|
|
|
.section-widget-subtitle-details summary {
|
|
|
|
border: 2px solid var(--border);
|
|
|
|
}
|
|
|
|
.section-widget-title-details summary,
|
|
|
|
.section-widget-subtitle-details summary {
|
2021-12-23 21:29:46 +00:00
|
|
|
align-items: center;
|
|
|
|
border-radius: var(--s);
|
2021-10-29 22:01:28 +01:00
|
|
|
background: var(--gradient) !important;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
.section-widget-subtitle-details[open] svg,
|
2021-12-08 15:16:30 +00:00
|
|
|
.section-widget-title-details[open] .icon-details-open {
|
2021-10-05 16:03:17 +01:00
|
|
|
transform: rotate(180deg);
|
2021-11-15 14:44:24 +00:00
|
|
|
animation: fadeOut 200ms cubic-bezier(0,0.55,0.45,1);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
.section-widget-subtitle-details:not([open]) svg,
|
2021-12-08 15:16:30 +00:00
|
|
|
.section-widget-title-details:not([open]) .icon-details-open {
|
2021-10-05 16:03:17 +01:00
|
|
|
transform: initial;
|
2021-11-15 14:44:24 +00:00
|
|
|
animation: fadeIn 200ms cubic-bezier(0,0.55,0.45,1);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
.section-subtitle-summary,
|
2021-10-05 16:03:17 +01:00
|
|
|
.section-title-summary {
|
|
|
|
display: flex;
|
2021-12-08 15:16:30 +00:00
|
|
|
}
|
2021-12-25 17:31:16 +00:00
|
|
|
.section-subtitle-summary ~ [class|="form-row"] {
|
|
|
|
padding: var(--s);
|
|
|
|
}
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-subtitle-summary strong,
|
2021-12-08 15:16:30 +00:00
|
|
|
.section-title-summary h2 {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-subtitle-summary a,
|
|
|
|
.section-title-summary a {
|
|
|
|
line-height: initial;
|
|
|
|
}
|
2021-12-08 15:16:30 +00:00
|
|
|
.section-subtitle-summary svg:last-child,
|
|
|
|
.section-title-summary svg:last-child {
|
|
|
|
margin-left: 4px;
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.section-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-29 18:14:39 +01:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2021-12-23 21:29:46 +00:00
|
|
|
padding: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
}
|
|
|
|
.section-form-legend {
|
|
|
|
margin-top: unset;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-12-25 16:19:46 +00:00
|
|
|
.form-row {
|
2021-12-25 17:31:16 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-12-23 21:29:46 +00:00
|
|
|
margin-bottom: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-25 16:19:46 +00:00
|
|
|
.form-row-widget {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-11-16 19:40:07 +00:00
|
|
|
}
|
2021-12-25 17:31:16 +00:00
|
|
|
.form-row-help {
|
|
|
|
margin-bottom: unset;
|
|
|
|
}
|
2021-12-25 16:19:46 +00:00
|
|
|
textarea.form-row-widget {
|
2021-10-01 16:37:28 +01:00
|
|
|
height: 7rem;
|
2021-12-25 16:19:46 +00:00
|
|
|
resize: vertical;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|
2021-12-25 16:19:46 +00:00
|
|
|
.form-row-widget-error,
|
|
|
|
.form-error,
|
2021-11-29 18:14:55 +00:00
|
|
|
.alert,
|
|
|
|
.alert-danger {
|
2021-11-24 13:59:46 +00:00
|
|
|
display: inline-block;
|
2021-10-01 16:37:28 +01:00
|
|
|
font-style: italic;
|
2021-11-15 14:44:24 +00:00
|
|
|
border: solid 2px #ff6347;
|
2021-10-01 16:37:28 +01:00
|
|
|
background-color: #FF634733;
|
2021-12-23 21:29:46 +00:00
|
|
|
border-radius: var(--s);
|
2021-10-01 16:37:28 +01:00
|
|
|
padding: 2px 6px;
|
|
|
|
margin-top: 6px;
|
2021-11-15 14:44:24 +00:00
|
|
|
margin-bottom: 6px;
|
2021-10-01 16:37:28 +01:00
|
|
|
}
|