2023-01-18 12:34:55 +01:00
|
|
|
/* globals */
|
2023-11-16 10:47:53 +01:00
|
|
|
|
2023-11-15 21:36:02 +01:00
|
|
|
:root {
|
|
|
|
--black: rgb(55, 53, 47);
|
2023-11-16 10:56:16 +01:00
|
|
|
--accent: rgb(90, 167, 206);
|
2023-11-15 21:36:02 +01:00
|
|
|
--shadow: 0.75px 0 0;
|
|
|
|
}
|
2023-01-18 12:34:55 +01:00
|
|
|
|
|
|
|
body {
|
2023-01-23 12:29:53 +01:00
|
|
|
margin-left: 7%;
|
|
|
|
margin-right: 7%;
|
2023-11-15 21:24:38 +01:00
|
|
|
background: white;
|
2023-11-16 10:47:53 +01:00
|
|
|
caret-color: var(--accent);
|
2023-11-15 21:45:45 +01:00
|
|
|
color: var(--black);
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
2023-07-04 17:41:19 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
input {
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2023-01-23 12:29:53 +01:00
|
|
|
color: inherit;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* scrollbars */
|
2023-11-16 10:47:53 +01:00
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
:root
|
|
|
|
{
|
|
|
|
scrollbar-width: thin;
|
2023-01-24 22:17:48 +01:00
|
|
|
scrollbar-color: lightgray;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body::-webkit-scrollbar {
|
2023-01-24 22:17:48 +01:00
|
|
|
height: 7px;
|
|
|
|
width: 7px;
|
|
|
|
background-color: darkgray;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body::-webkit-scrollbar-thumb {
|
2023-01-24 22:17:48 +01:00
|
|
|
background-color: lightgray;
|
2023-01-18 12:34:55 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* note page and editor */
|
|
|
|
|
2023-11-28 15:24:33 +01:00
|
|
|
#unsavedmark {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 5px;
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
#notepage {
|
|
|
|
width: 100%;
|
2023-11-16 10:42:27 +01:00
|
|
|
display: table;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#md {
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
2023-01-21 16:07:14 +01:00
|
|
|
color: inherit;
|
2023-01-18 12:34:55 +01:00
|
|
|
|
|
|
|
resize: none;
|
2023-09-11 09:57:00 +02:00
|
|
|
|
2024-01-12 13:46:48 +01:00
|
|
|
font-family: inherit;
|
2023-01-18 12:34:55 +01:00
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
background-color: inherit;
|
2023-09-23 09:02:02 +02:00
|
|
|
|
|
|
|
/* coloring */
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#notecontent {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#colored {
|
|
|
|
position: absolute;
|
2023-09-27 21:15:57 +02:00
|
|
|
white-space: pre-wrap;
|
2023-09-23 09:02:02 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -1;
|
|
|
|
width: 100%;
|
2023-09-25 14:25:55 +02:00
|
|
|
word-wrap:break-word;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
2023-02-05 10:04:07 +01:00
|
|
|
#network {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2023-02-05 10:20:27 +01:00
|
|
|
height: 100%;
|
2023-02-05 10:04:07 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
/* top bar content */
|
|
|
|
|
|
|
|
#topbar {
|
|
|
|
height: 50px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 20px;
|
|
|
|
background-color: inherit;
|
2023-03-03 09:58:56 +01:00
|
|
|
height: 100%;
|
|
|
|
font-weight: bold;
|
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
2023-11-07 10:36:51 +01:00
|
|
|
/* preview */
|
|
|
|
|
|
|
|
#preview {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 150%;
|
|
|
|
}
|
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
/* search file dialog */
|
|
|
|
|
|
|
|
#filter {
|
2024-01-31 13:55:45 +01:00
|
|
|
font-family: inherit;
|
2023-10-25 17:54:16 +02:00
|
|
|
color: black;
|
2023-11-11 11:56:58 +01:00
|
|
|
width: 100%;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchdialog {
|
2023-10-25 17:54:16 +02:00
|
|
|
color: black;
|
|
|
|
background-color: lightgray;
|
2023-01-18 12:34:55 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2023-09-27 22:21:38 +02:00
|
|
|
left: 10%;
|
2023-01-18 12:34:55 +01:00
|
|
|
opacity: 1;
|
2023-09-27 22:21:38 +02:00
|
|
|
width: 80%;
|
2023-09-23 22:51:59 +02:00
|
|
|
z-index: 2;
|
2023-10-25 17:54:16 +02:00
|
|
|
font-size: 14px;
|
2023-11-11 11:56:58 +01:00
|
|
|
min-width: 500px;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
2023-10-25 11:12:20 +02:00
|
|
|
|
|
|
|
.searchitem {
|
|
|
|
cursor: pointer;
|
2023-10-25 17:54:16 +02:00
|
|
|
margin: 2px 2px 2px 2px;
|
2023-10-25 11:12:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.selected {
|
|
|
|
cursor: pointer;
|
2023-10-25 17:54:16 +02:00
|
|
|
background-color: darkgray;
|
|
|
|
margin: 2px 2px 2px 2px;
|
2023-11-10 17:17:09 +01:00
|
|
|
}
|
|
|
|
|
2023-11-16 10:47:53 +01:00
|
|
|
.searchlistprefix {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchlistsuffix {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2023-11-10 17:17:09 +01:00
|
|
|
/* colors */
|
2023-11-16 10:47:53 +01:00
|
|
|
|
2023-11-10 17:17:09 +01:00
|
|
|
.color-code {
|
2024-03-22 15:54:17 +01:00
|
|
|
color:var(--black);
|
2024-03-22 16:05:56 +01:00
|
|
|
background-color:WhiteSmoke;
|
2023-11-15 21:36:02 +01:00
|
|
|
}
|
|
|
|
|
2023-11-16 10:47:53 +01:00
|
|
|
.color-heading-mark {
|
2023-12-13 11:50:50 +01:00
|
|
|
color: var(--accent);
|
2023-11-16 10:47:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.color-heading {
|
|
|
|
text-shadow: var(--shadow);
|
2023-11-13 17:17:38 +01:00
|
|
|
}
|
|
|
|
|
2023-11-15 21:45:45 +01:00
|
|
|
.color-bold {
|
|
|
|
text-shadow: var(--shadow);
|
|
|
|
}
|
|
|
|
|
2023-11-16 10:47:53 +01:00
|
|
|
.color-emphasis {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-list-marker {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-header {
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-code-language {
|
|
|
|
color: var(--accent);
|
|
|
|
text-shadow: var(--shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-code-comment {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-code-keyword {
|
|
|
|
color: var(--accent);
|
|
|
|
text-shadow: var(--shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-comment {
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-autocomplete {
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-link {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-todo-priority {
|
|
|
|
color: var(--accent);
|
|
|
|
text-shadow: var(--shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-todo-complete {
|
|
|
|
color: lightgrey;
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-todo-project {
|
|
|
|
text-shadow: var(--shadow);
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-todo-context {
|
|
|
|
color: grey;
|
2023-11-15 21:45:45 +01:00
|
|
|
}
|
|
|
|
|
2023-11-13 17:17:38 +01:00
|
|
|
/* link dialog */
|
2023-11-16 10:47:53 +01:00
|
|
|
|
2023-11-13 17:17:38 +01:00
|
|
|
#linkdialog {
|
|
|
|
border-radius: 3px;
|
|
|
|
opacity:1;
|
|
|
|
color: white;
|
2023-11-15 21:36:02 +01:00
|
|
|
background-color:var(--black);
|
2023-11-13 17:17:38 +01:00
|
|
|
position:absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
#linkelt {
|
|
|
|
margin: 5px 7px 5px 7px;
|
2023-11-11 11:56:58 +01:00
|
|
|
}
|