2021-10-06 00:03:17 +09:00
|
|
|
.profile {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
2021-11-15 23:44:24 +09:00
|
|
|
font-family: 'Open Sans',sans-serif;
|
2021-11-30 03:14:55 +09:00
|
|
|
margin-bottom: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
|
|
|
padding: var(--smaller);
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient) !important;
|
2021-11-15 22:55:23 +09:00
|
|
|
-webkit-box-shadow: var(--shadow);
|
|
|
|
-moz-box-shadow: var(--shadow);
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile *[class*="profile-info-"] {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2021-10-06 03:04:30 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-info {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-11-15 23:44:24 +09:00
|
|
|
flex-direction: column;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-info-nickname {
|
2021-11-30 03:14:55 +09:00
|
|
|
font-size: var(--small);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-info-tags {
|
2021-11-15 23:44:24 +09:00
|
|
|
margin: unset;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-info-stats strong {
|
2021-11-15 23:44:24 +09:00
|
|
|
margin-right: 5px;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-info-stats {
|
2021-11-30 03:14:55 +09:00
|
|
|
margin-top: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-12-07 07:22:23 +09:00
|
|
|
.profile-info-bio {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.profile-avatar {
|
|
|
|
max-width: 4rem;
|
2021-12-03 00:29:46 +09:00
|
|
|
max-height: 4rem;
|
2021-11-30 03:14:55 +09:00
|
|
|
min-width: var(--big);
|
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-11-15 23:07:05 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-11-30 03:14:55 +09:00
|
|
|
border-radius: var(--smaller);
|
|
|
|
margin-bottom: var(--small);
|
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
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget hr {
|
2021-11-30 03:14:55 +09:00
|
|
|
margin-bottom: var(--smaller);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget-padded {
|
2021-11-30 03:14:55 +09:00
|
|
|
padding: var(--smaller);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-12-07 07:22:23 +09:00
|
|
|
.section-widget-paging {
|
|
|
|
display: block;
|
|
|
|
margin-top: var(--smaller);
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-title {
|
2021-11-30 03:14:55 +09:00
|
|
|
font-size: var(--small);
|
2021-10-02 00:37:28 +09:00
|
|
|
font-weight: 700;
|
2021-11-15 23:44:24 +09:00
|
|
|
margin: 0;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget-button-like {
|
2021-11-30 03:14:55 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-02 00:37:28 +09:00
|
|
|
padding: 6px 10px;
|
|
|
|
margin-top: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
align-self: end;
|
2021-11-15 23:44:24 +09:00
|
|
|
font-family: 'Open Sans',sans-serif;
|
|
|
|
font-weight: 700;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-12-07 06:07:45 +09:00
|
|
|
.section-widget-title-details summary {
|
2021-11-30 03:14:55 +09:00
|
|
|
font-size: var(--small);
|
2021-10-02 00:37:28 +09:00
|
|
|
font-weight: 700;
|
2021-11-30 03:14:55 +09:00
|
|
|
border-radius: var(--smaller);
|
|
|
|
padding: 6px 10px;
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient) !important;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-12-07 06:07:45 +09:00
|
|
|
.section-widget-title-details[open] svg {
|
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-11-15 23:07:05 +09:00
|
|
|
|
2021-12-07 06:07:45 +09:00
|
|
|
.section-widget-title-details:not([open]) svg {
|
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-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.section-title-summary {
|
|
|
|
display: flex;
|
2021-11-15 23:44:24 +09:00
|
|
|
justify-content: space-between;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.section-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-30 02:14:39 +09:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2021-11-30 03:14:55 +09:00
|
|
|
padding: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
.section-form-legend {
|
|
|
|
margin-top: unset;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: bold;
|
2021-11-30 03:14:55 +09:00
|
|
|
font-size: var(--medium);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-11-24 22:59:46 +09:00
|
|
|
div[class^="mb-"] {
|
2021-10-02 00:37:28 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-11-15 23:44:24 +09:00
|
|
|
flex-basis: border-box;
|
|
|
|
margin-bottom: var(--smaller);
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-11-24 22:59:46 +09:00
|
|
|
div[class^="mb-"]:last-of-type {
|
2021-11-17 04:40:07 +09:00
|
|
|
margin-bottom: unset;
|
|
|
|
}
|
|
|
|
|
2021-11-24 22:59:46 +09:00
|
|
|
div[class^="mb-"] textarea {
|
2021-10-02 00:37:28 +09:00
|
|
|
height: 7rem;
|
2021-11-15 23:44:24 +09:00
|
|
|
max-height: 100%;
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
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-10-06 00:03:17 +09:00
|
|
|
font-size: 1rem;
|
2021-11-15 23:44:24 +09:00
|
|
|
border: solid 2px #ff6347;
|
2021-10-02 00:37:28 +09:00
|
|
|
background-color: #FF634733;
|
2021-11-30 03:14:55 +09:00
|
|
|
border-radius: var(--smaller);
|
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-10-02 00:37:28 +09:00
|
|
|
}
|