2023-10-04 11:47:02 +00:00
|
|
|
/* Reset SB styles */
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: initial !important;
|
|
|
|
overflow: initial !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sb-main {
|
|
|
|
height: initial !important;
|
|
|
|
display: initial !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sb-editor {
|
|
|
|
flex: initial !important;
|
|
|
|
height: initial !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cm-editor {
|
|
|
|
height: initial !important;
|
|
|
|
}
|
|
|
|
|
2023-10-03 12:16:33 +00:00
|
|
|
body {
|
|
|
|
font-family: var(--ui-font);
|
|
|
|
background-color: var(--root-background-color);
|
|
|
|
color: var(--root-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sb-line-h2 {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px !important;
|
|
|
|
background-color: rgba(233, 233, 233, 0.5);
|
|
|
|
}
|
|
|
|
|
2023-10-09 18:39:03 +00:00
|
|
|
#button-bar {
|
2023-10-03 12:16:33 +00:00
|
|
|
position: absolute;
|
2023-10-09 18:39:03 +00:00
|
|
|
right: 10px;
|
|
|
|
top: 10px;
|
|
|
|
padding: 0 3px;
|
2023-10-03 12:16:33 +00:00
|
|
|
}
|
|
|
|
|
2023-10-09 18:39:03 +00:00
|
|
|
#button-bar button {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--root-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#edit-button {
|
|
|
|
margin-left: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-10-03 12:16:33 +00:00
|
|
|
li code {
|
|
|
|
font-size: 80%;
|
|
|
|
color: #a5a4a4;
|
|
|
|
}
|