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