1
0
silverbullet/web/styles/main.scss

173 lines
2.5 KiB
SCSS

@use "editor";
@use "modals";
@use "theme";
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Regular.woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Bold.woff2");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Italic.woff2");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-BoldItalic.woff2");
font-weight: bold;
font-style: italic;
}
#sb-root {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
#sb-top {
display: flex;
flex-direction: row;
z-index: 20;
height: 55px;
.main {
flex: 2;
max-width: 100%;
.inner {
// Hack to not have SCSS precompile this value but use proper CSS variables
max-width: var(--#{"editor-width"});
margin: auto;
font-size: 28px;
padding: 10px 0;
display: flex;
flex-direction: row;
.wrapper {
width: 100%;
padding: 0 20px;
position: relative;
}
.sb-notifications {
position: fixed;
bottom: 0;
left: 5px;
right: 5px;
font-size: 15px;
z-index: 100;
>div {
padding: 3px;
margin-bottom: 3px;
border-radius: 5px;
}
}
#sb-current-page {
flex: 1;
overflow: hidden;
white-space: nowrap;
text-align: left;
display: block;
.cm-scroller {
font-family: var(--ui-font);
}
.cm-content {
padding: 0;
.cm-line {
padding: 0;
}
}
}
}
.sb-actions {
text-align: right;
position: absolute;
right: 15px;
top: 0;
}
}
.sb-panel {
flex: 1;
}
}
#sb-main {
display: flex;
flex-direction: row;
flex-grow: 1;
height: 0;
.sb-panel {
flex: 1;
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}
#sb-editor {
flex: 2;
height: 100%;
}
.sb-bhs {
height: 300px;
width: 100%;
z-index: 10;
.sb-panel {
height: 100%;
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}
.sb-modal {
position: absolute;
z-index: 100;
.sb-panel {
height: 100%;
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}