1
0
silverbullet/web/styles/main.scss

171 lines
2.5 KiB
SCSS
Raw Normal View History

@use "editor";
@use "filter_box";
@use "theme";
2022-04-04 13:25:07 +00:00
2022-05-06 16:55:04 +00:00
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Regular.woff2");
2022-05-06 16:55:04 +00:00
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Bold.woff2");
2022-05-06 16:55:04 +00:00
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-Italic.woff2");
2022-05-06 16:55:04 +00:00
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "iA-Mono";
src: url("/iAWriterMonoS-BoldItalic.woff2");
2022-05-06 16:55:04 +00:00
font-weight: bold;
font-style: italic;
}
2022-07-22 11:44:28 +00:00
#sb-root {
2022-04-04 16:33:13 +00:00
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
2022-03-28 13:25:05 +00:00
}
2022-07-22 11:44:28 +00:00
#sb-top {
2022-04-04 16:33:13 +00:00
display: flex;
flex-direction: row;
2022-06-17 18:17:22 +00:00
z-index: 20;
2022-04-04 16:33:13 +00:00
2022-08-02 12:40:04 +00:00
height: 55px;
2022-04-04 16:33:13 +00:00
.main {
flex: 2;
2022-06-20 15:24:44 +00:00
max-width: 100%;
2022-04-04 16:33:13 +00:00
.inner {
2022-08-02 12:40:04 +00:00
max-width: 800px;
2022-04-04 16:33:13 +00:00
margin: auto;
font-size: 28px;
2022-12-16 10:39:46 +00:00
padding: 10px 0;
2022-06-20 15:24:44 +00:00
display: flex;
flex-direction: row;
2022-12-16 10:39:46 +00:00
.wrapper {
width: 100%;
padding: 0 20px;
position: relative;
}
2022-08-02 12:40:04 +00:00
.sb-notifications {
position: absolute;
bottom: 0;
left: 5px;
right: 5px;
font-size: 15px;
z-index: 100;
2022-12-16 10:39:46 +00:00
>div {
padding: 3px;
margin-bottom: 3px;
border-radius: 5px;
}
}
2022-04-04 16:33:13 +00:00
2022-08-02 12:40:04 +00:00
.sb-current-page {
2022-06-20 15:24:44 +00:00
flex: 1;
2022-06-17 18:17:22 +00:00
overflow: hidden;
white-space: nowrap;
text-align: left;
2022-06-17 18:17:22 +00:00
display: block;
text-overflow: ellipsis;
2022-04-04 16:33:13 +00:00
}
input.sb-edit-page-name {
background: transparent;
white-space: nowrap;
text-align: left;
border: 0;
outline: none;
padding: 0;
width: 100%;
}
}
2022-06-17 18:17:22 +00:00
2022-08-02 12:40:04 +00:00
.sb-actions {
text-align: right;
2022-12-16 10:39:46 +00:00
position: absolute;
right: 0;
top: 0;
2022-05-06 16:55:04 +00:00
}
2022-04-04 16:33:13 +00:00
}
2022-03-28 13:25:05 +00:00
2022-08-02 12:40:04 +00:00
.sb-panel {
2022-04-04 16:33:13 +00:00
flex: 1;
}
}
2022-07-22 11:44:28 +00:00
#sb-main {
2022-04-04 16:33:13 +00:00
display: flex;
flex-direction: row;
flex-grow: 1;
height: 0;
2022-08-02 12:40:04 +00:00
.sb-panel {
2022-04-04 16:33:13 +00:00
flex: 1;
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}
2022-07-22 11:44:28 +00:00
#sb-editor {
2022-04-04 16:33:13 +00:00
overflow-y: scroll;
flex: 2;
height: 100%;
2022-03-28 13:25:05 +00:00
}
2022-08-02 12:40:04 +00:00
.sb-bhs {
2022-05-09 12:59:12 +00:00
height: 300px;
2022-04-26 17:04:36 +00:00
width: 100%;
2022-05-09 12:59:12 +00:00
2022-08-02 12:40:04 +00:00
.sb-panel {
2022-05-09 12:59:12 +00:00
height: 100%;
2022-04-26 17:04:36 +00:00
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;
}
}
2022-12-16 10:39:46 +00:00
}