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.
141 lines
3.0 KiB
141 lines
3.0 KiB
:root {
|
|
--top_panel_vertical_height: 0.5rem;
|
|
--top_panel_height: calc(36px + var(--top_panel_vertical_height) * 2);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
background-color: #F7FAFC;
|
|
}
|
|
|
|
.btn {
|
|
--btn-color: #333;
|
|
--btn-background-color: white;
|
|
display: inline-block;
|
|
padding: calc(0.375rem - 2px) 0.75rem;
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
color: var(--btn-color);
|
|
border-radius: 0.25rem;
|
|
border: 1px solid var(--btn-background-color);
|
|
background-color: var(--btn-background-color);
|
|
cursor: pointer;
|
|
}
|
|
.btn:disabled {
|
|
opacity: 0.75;
|
|
cursor: default;
|
|
}
|
|
.btn--primary {
|
|
--btn-color: white;
|
|
--btn-background-color: #333;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.page_toolbar {
|
|
--gap: 2.5rem;
|
|
font-size: 14px;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #EDF2F7;
|
|
padding: var(--top_panel_vertical_height) 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.page_toolbar__middle {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--gap);
|
|
align-items: center;
|
|
}
|
|
.page_toolbar__middle > div {
|
|
position: relative;
|
|
}
|
|
@media (max-width: 1024px) {
|
|
.page_toolbar__middle > div {
|
|
display: none;
|
|
}
|
|
}
|
|
.page_toolbar__middle > 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__middle > 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__middle__data_options {
|
|
display: block;
|
|
}
|
|
}
|
|
.page_toolbar__left, .page_toolbar__right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#preview_frame {
|
|
display: block;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
--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;
|
|
}
|
|
|
|
.open_in_new_tab {
|
|
--size: 1.5rem;
|
|
width: var(--size);
|
|
height: var(--size);
|
|
background-image: url("/scripts/toolbar/images/icon-open-new-tab.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: calc(var(--size) - 0.15rem);
|
|
background-position: center center;
|
|
background-color: initial;
|
|
cursor: pointer;
|
|
border: 0;
|
|
font-size: 1px;
|
|
color: rgba(0, 0, 0, 0);
|
|
line-height: 1;
|
|
display: block;
|
|
border-radius: 0.25rem;
|
|
outline: none;
|
|
}
|
|
|
|
/*# sourceMappingURL=page--main.css.map */
|
|
|