You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
768 B
47 lines
768 B
body {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
header.page_toolbar {
|
|
--gap: 2.5rem;
|
|
|
|
font-family: Arial, sans-serif;
|
|
background-color: #ccc;
|
|
padding: 1rem;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--gap);
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
header.page_toolbar > div {
|
|
position: relative;
|
|
}
|
|
|
|
header.page_toolbar > div:not(:first-child):after {
|
|
content: '|';
|
|
position: absolute;
|
|
left: calc(var(--gap) / 2 * -1);
|
|
top: 40%;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
header.page_toolbar select {
|
|
font-size: 0.85rem;
|
|
padding: 0.25rem;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
header.page_toolbar > div {
|
|
display: none;
|
|
}
|
|
|
|
header.page_toolbar .page_toolbar__data_options {
|
|
display: block;
|
|
}
|
|
}
|
|
|