2021-10-06 00:03:17 +09:00
|
|
|
|
|
|
|
.profile {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
margin-bottom: 0.6rem;
|
|
|
|
border-radius: 0.6rem;
|
|
|
|
padding: 0.6rem
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
flex-direction: column
|
|
|
|
}
|
|
|
|
.profile-info-nickname {
|
|
|
|
font-size: 1.3rem
|
|
|
|
}
|
|
|
|
.profile-info-tags {
|
|
|
|
margin: unset
|
|
|
|
}
|
|
|
|
.profile-info-stats strong {
|
|
|
|
margin-right: 5px
|
|
|
|
}
|
|
|
|
.profile-info-stats {
|
|
|
|
margin-top: 0.6rem
|
|
|
|
}
|
|
|
|
.profile-avatar {
|
|
|
|
max-width: 4rem;
|
|
|
|
min-width: 3rem;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 2px
|
|
|
|
}
|
2021-10-02 00:37:28 +09:00
|
|
|
.section-widget {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-06 00:03:17 +09:00
|
|
|
border-radius: 0.6rem;
|
|
|
|
margin-bottom: 1.3rem
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-widget hr {
|
2021-10-06 00:03:17 +09:00
|
|
|
margin-bottom: 0.6rem
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-widget-padded {
|
2021-10-06 00:03:17 +09:00
|
|
|
padding: 0.6rem
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-title {
|
2021-10-06 00:03:17 +09:00
|
|
|
font-size: 1.3rem;
|
2021-10-02 00:37:28 +09:00
|
|
|
font-weight: 700;
|
2021-10-06 00:03:17 +09:00
|
|
|
margin: 0
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.section-widget-button-like {
|
2021-10-06 00:03:17 +09:00
|
|
|
border-radius: 0.6rem;
|
2021-10-02 00:37:28 +09:00
|
|
|
padding: 6px 10px;
|
|
|
|
margin-top: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
align-self: end;
|
2021-10-06 00:03:17 +09:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
font-weight: 700
|
|
|
|
}
|
|
|
|
.section-title-details {
|
|
|
|
font-size: 1.3rem;
|
2021-10-02 00:37:28 +09:00
|
|
|
font-weight: 700;
|
2021-10-06 00:03:17 +09:00
|
|
|
border-radius: 0.6rem;
|
|
|
|
padding: 6px 10px 6px 10px
|
|
|
|
}
|
|
|
|
.section-title-details[open] svg {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
animation: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1)
|
|
|
|
}
|
|
|
|
.section-title-details:not([open]) svg {
|
|
|
|
transform: initial;
|
|
|
|
animation: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1)
|
|
|
|
}
|
|
|
|
.section-title-summary {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between
|
|
|
|
}
|
|
|
|
.section-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-30 02:14:39 +09:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2021-10-06 00:03:17 +09:00
|
|
|
padding: 0.6rem
|
|
|
|
}
|
|
|
|
.section-form-legend {
|
|
|
|
margin-top: unset;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.62rem
|
|
|
|
}
|
|
|
|
.form-group {
|
2021-10-02 00:37:28 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-06 00:03:17 +09:00
|
|
|
margin-bottom: 6px
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.form-group textarea {
|
|
|
|
height: 7rem;
|
2021-10-06 00:03:17 +09:00
|
|
|
max-height: 100%
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.help-block {
|
2021-10-06 00:03:17 +09:00
|
|
|
margin-bottom: 6px
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
|
|
|
.help-text {
|
|
|
|
font-style: italic;
|
2021-10-06 00:03:17 +09:00
|
|
|
font-size: 1rem;
|
|
|
|
margin-bottom: 6px
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
.help-block>.list-unstyled,
|
2021-10-02 00:37:28 +09:00
|
|
|
.alert,
|
|
|
|
.alert-danger {
|
|
|
|
display: inline-block;
|
|
|
|
border: solid 2px #FF6347;
|
|
|
|
background-color: #FF634733;
|
2021-10-06 00:03:17 +09:00
|
|
|
border-radius: 0.6rem;
|
2021-10-02 00:37:28 +09:00
|
|
|
padding: 2px 6px;
|
|
|
|
margin-top: 6px;
|
2021-10-06 00:03:17 +09:00
|
|
|
margin-bottom: 6px
|
2021-10-02 00:37:28 +09:00
|
|
|
}
|