You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
645 B
CSS
42 lines
645 B
CSS
/* Override this file to customise the theme's CSS for your site */
|
|
/* Format the accordion */
|
|
details {
|
|
padding: .6rem 1rem;
|
|
background: var(--accent);
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
details.red-notice {
|
|
background: var(--notice-red-bg);
|
|
border-color: var(--notice-red-border);
|
|
}
|
|
|
|
.red-notice h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
|
|
details[open] {
|
|
padding-bottom: .75rem;
|
|
}
|
|
|
|
details[open] summary {
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
details[open]>*:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|