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.
70 lines
1.4 KiB
70 lines
1.4 KiB
body {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
background-color: #F7FAFC;
|
|
}
|
|
|
|
.page_toolbar {
|
|
--gap: 2.5rem;
|
|
font-size: 14px;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #EDF2F7;
|
|
padding: 1em;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--gap);
|
|
align-items: center;
|
|
}
|
|
.page_toolbar > div {
|
|
position: relative;
|
|
}
|
|
@media (max-width: 1024px) {
|
|
.page_toolbar > div {
|
|
display: none;
|
|
}
|
|
}
|
|
.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%);
|
|
}
|
|
.page_toolbar > div select {
|
|
font-size: 0.85em;
|
|
margin: 0;
|
|
display: inline-block;
|
|
border-radius: initial;
|
|
min-width: initial;
|
|
width: initial !important;
|
|
padding: 4px 8px;
|
|
}
|
|
@media (max-width: 1024px) {
|
|
.page_toolbar__data_options {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
#preview_frame {
|
|
display: block;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
--top_panel_height: 53.5px;
|
|
--top_spacing: 0px;
|
|
--breakpoint_top_spacing: 30px;
|
|
margin-top: var(--top_spacing);
|
|
height: calc(100% - var(--top_panel_height) - var(--top_spacing));
|
|
background-color: white;
|
|
border: 1px solid #E2E8F0;
|
|
transition: max-width 0.3s ease-in-out, width 0.3s ease-in-out, margin-top 0.3s ease-in-out;
|
|
}
|
|
#preview_frame.has-breakpoint {
|
|
--breakpoint: 100%;
|
|
width: 100%;
|
|
max-width: var(--breakpoint);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/*# sourceMappingURL=page--main.css.map */
|
|
|