2021-10-06 00:03:17 +09:00
|
|
|
.section-settings {
|
2021-12-24 06:29:46 +09:00
|
|
|
background: var(--background-card);
|
2021-11-28 05:26:44 +09:00
|
|
|
border: 2px solid var(--border);
|
2021-12-02 05:13:24 +09:00
|
|
|
box-shadow: var(--shadow);
|
2020-07-27 01:49:11 +09:00
|
|
|
}
|
2021-07-21 03:30:49 +09:00
|
|
|
|
2021-11-28 05:26:44 +09:00
|
|
|
.section-settings,
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details {
|
2021-11-15 23:07:05 +09:00
|
|
|
margin-bottom: .6rem;
|
|
|
|
border-radius: .6rem;
|
|
|
|
padding: .6rem;
|
2021-07-30 01:29:25 +09:00
|
|
|
box-sizing: border-box;
|
2021-12-02 05:13:24 +09:00
|
|
|
}
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details {
|
|
|
|
border: 2px solid var(--border);
|
|
|
|
}
|
|
|
|
.section-settings-details-title {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.section-settings-details[open] {
|
2021-12-07 05:56:06 +09:00
|
|
|
border-left: 2px solid var(--foreground);
|
2020-07-27 01:49:11 +09:00
|
|
|
}
|
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details[open] > summary:first-child {
|
|
|
|
margin-bottom: var(--s);
|
2021-07-30 01:29:25 +09:00
|
|
|
}
|
2020-08-08 09:20:51 +09:00
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details summary + form {
|
|
|
|
padding-left: var(--s);
|
2020-08-08 09:20:51 +09:00
|
|
|
}
|
2021-07-21 03:30:49 +09:00
|
|
|
|
2021-11-28 05:26:44 +09:00
|
|
|
.section-settings hr {
|
2021-11-15 23:07:05 +09:00
|
|
|
margin-top: .6rem;
|
2021-11-28 05:26:44 +09:00
|
|
|
margin-bottom: .6rem;
|
2021-08-10 02:06:45 +09:00
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details summary h3:first-letter ,.section-settings-details summary em:first-letter {
|
2021-09-18 04:33:02 +09:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2021-08-10 02:06:45 +09:00
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details summary:focus .icon-details-open,.section-settings-details summary:hover .icon-details-open {
|
2021-11-15 23:07:05 +09:00
|
|
|
transition: all 200ms cubic-bezier(0,0.55,0.45,1);
|
2020-08-13 05:02:34 +09:00
|
|
|
}
|
2021-07-21 03:30:49 +09:00
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details[open] svg {
|
2021-07-29 04:16:27 +09:00
|
|
|
transform: rotate(180deg);
|
2021-11-15 23:07:05 +09:00
|
|
|
animation: fadeOut 200ms cubic-bezier(0,0.55,0.45,1);
|
2021-07-21 03:30:49 +09:00
|
|
|
}
|
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details[open] .set-nav li:last-of-type {
|
2021-07-29 04:16:27 +09:00
|
|
|
margin-bottom: 0;
|
2020-09-05 14:34:41 +09:00
|
|
|
}
|
2021-07-21 03:30:49 +09:00
|
|
|
|
2021-12-24 06:29:46 +09:00
|
|
|
.section-settings-details:not([open]) svg {
|
2021-07-29 04:16:27 +09:00
|
|
|
transform: initial;
|
2021-11-15 23:07:05 +09:00
|
|
|
animation: fadeIn 200ms cubic-bezier(0,0.55,0.45,1);
|
2020-08-07 07:56:40 +09:00
|
|
|
}
|