34 lines
571 B
CSS
34 lines
571 B
CSS
* {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
section:not(.collapsable),
|
|
footer {
|
|
box-sizing: border-box;
|
|
padding: var(--padding-vertical) var(--space-m);
|
|
}
|
|
section:not(:last-child, .collapsable, .collapsable-sections) {
|
|
border-bottom: var(--border);
|
|
}
|
|
|
|
picture {
|
|
background-color: #ddd;
|
|
display: flex !important;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
picture img {
|
|
z-index: 1;
|
|
}
|
|
|
|
picture svg {
|
|
position: absolute;
|
|
opacity: 1;
|
|
transition: var(--transition-image-opacity);
|
|
z-index: 0;
|
|
}
|
|
|
|
a[disabled] {
|
|
cursor: not-allowed;
|
|
}
|