2023-01-18 12:34:55 +01:00
|
|
|
/* globals */
|
|
|
|
|
|
|
|
body {
|
2023-01-23 12:29:53 +01:00
|
|
|
margin-left: 7%;
|
|
|
|
margin-right: 7%;
|
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-family: inherit;
|
|
|
|
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 */
|
|
|
|
: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 */
|
|
|
|
|
|
|
|
#notepage {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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
|
|
|
|
2023-01-18 12:34:55 +01:00
|
|
|
font-family: inherit;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/* search file dialog */
|
|
|
|
|
|
|
|
.selected {
|
|
|
|
background-color: darkgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchdialog {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
background-color: lightgray;
|
|
|
|
opacity: 1;
|
|
|
|
width: 90%;
|
2023-01-24 22:17:48 +01:00
|
|
|
color: black;
|
2023-09-23 22:51:59 +02:00
|
|
|
z-index: 2;
|
2023-01-18 12:34:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* authent */
|
|
|
|
|
|
|
|
#bigtitle {
|
|
|
|
font-size: 50px;
|
|
|
|
line-height: 100%;
|
|
|
|
}
|