1
0
silverbullet/packages/web/styles/main.scss

206 lines
3.4 KiB
SCSS
Raw Normal View History

@use "editor.scss";
@use "filter_box.scss";
2022-04-04 13:25:07 +00:00
@import "constants";
2022-05-06 16:55:04 +00:00
@font-face {
font-family: "iA-Mono";
src: url("../fonts/iAWriterMonoS-Regular.woff2");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("../fonts/iAWriterMonoS-Bold.woff2");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "iA-Mono";
src: url("../fonts/iAWriterMonoS-Italic.woff2");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "iA-Mono";
src: url("../fonts/iAWriterMonoS-BoldItalic.woff2");
font-weight: bold;
font-style: italic;
}
:root {
--ident: 18px;
/* --editor-font: "Avenir"; */
2022-05-06 16:55:04 +00:00
--editor-font: "iA-Mono", "Menlo";
--ui-font: "Arial";
--top-bar-bg: rgb(41, 41, 41);
--highlight-color: #464cfc;
}
html,
body {
margin: 0;
2022-04-04 16:33:13 +00:00
height: 100%;
padding: 0;
2022-04-04 16:33:13 +00:00
width: 100%;
overflow: hidden;
}
2022-04-04 16:33:13 +00:00
#root {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
2022-03-28 13:25:05 +00:00
}
#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-04-04 13:25:07 +00:00
height: $top-bar-height;
background-color: rgb(213, 213, 213);
border-bottom: rgb(193, 193, 193) 1px solid;
color: rgb(55, 55, 55);
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 {
max-width: $max-editor-width;
margin: auto;
font-size: 28px;
padding: 10px 20px;
2022-06-20 15:24:44 +00:00
display: flex;
flex-direction: row;
.status {
position: absolute;
font-family: "iA-Mono";
bottom: 45px;
left: 5px;
right: 5px;
background-color: rgb(187, 221, 247);
border: rgb(41, 41, 41) 1px solid;
border-radius: 5px;
padding: 3px;
font-size: 15px;
z-index: 100;
}
2022-04-04 16:33:13 +00:00
.current-page {
font-family: var(--ui-font);
font-weight: bold;
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
}
2022-04-10 09:04:07 +00:00
.saved {
color: #111;
2022-04-04 16:33:13 +00:00
}
2022-04-10 09:04:07 +00:00
.unsaved {
color: #5e5e5e;
2022-04-04 16:33:13 +00:00
}
}
2022-05-06 16:55:04 +00:00
.actions {
2022-06-17 18:17:22 +00:00
text-align: right;
2022-06-20 15:24:44 +00:00
width: 40px;
2022-06-17 18:17:22 +00:00
ul {
list-style: none;
margin-left: 0;
padding-left: 0;
margin-top: 0;
list-style: none;
background: #fff;
border: #000 1px solid;
text-align: left;
a {
padding: 3px;
font-family: var(--ui-font);
font-size: 50%;
text-decoration: none;
color: #000;
}
li {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 5px;
}
li:hover {
background-color: #4d8dff12;
}
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-04-04 16:33:13 +00:00
.panel {
flex: 1;
}
}
2022-04-04 16:33:13 +00:00
#main {
display: flex;
flex-direction: row;
flex-grow: 1;
height: 0;
.panel {
flex: 1;
border-left: 1px solid #eee;
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}
2022-04-04 16:33:13 +00:00
#editor {
overflow-y: scroll;
flex: 2;
height: 100%;
2022-03-28 13:25:05 +00:00
}
2022-04-26 17:04:36 +00:00
#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
border-top: rgb(193, 193, 193) 1px solid;
.panel {
height: 100%;
2022-04-26 17:04:36 +00:00
iframe {
border: 0;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
}
}
#status-bar {
height: 40px;
line-height: 40px;
padding: 0 10px;
2022-04-04 13:25:07 +00:00
text-align: right;
background-color: rgb(213, 213, 213);
border-top: rgb(193, 193, 193) 1px solid;
2022-05-09 12:59:12 +00:00
font-family: "iA-Mono";
2022-04-04 13:25:07 +00:00
}