2024-04-07 21:31:08 +02:00
|
|
|
:root {
|
|
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
|
2024-04-13 17:32:40 +02:00
|
|
|
background-color: #252525;
|
2024-04-07 21:31:08 +02:00
|
|
|
color: #f6f6f6;
|
|
|
|
|
|
|
|
font-synthesis: none;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-text-size-adjust: 100%;
|
2024-04-13 20:51:49 +02:00
|
|
|
|
2024-04-15 11:16:41 +02:00
|
|
|
margin-top: 0.5em;
|
|
|
|
|
2024-04-14 17:33:35 +02:00
|
|
|
overflow-y: hidden;
|
|
|
|
|
2024-04-13 17:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#button-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
margin: 0;
|
|
|
|
|
2024-04-07 21:31:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
margin: 0;
|
2024-04-13 17:32:40 +02:00
|
|
|
padding-top: 2vh;
|
2024-04-07 21:31:08 +02:00
|
|
|
display: flex;
|
2024-04-13 17:32:40 +02:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2024-04-07 21:31:08 +02:00
|
|
|
text-align: center;
|
|
|
|
|
2024-04-14 17:33:35 +02:00
|
|
|
height: 90vh;
|
2024-04-07 21:31:08 +02:00
|
|
|
}
|
|
|
|
|
2024-04-13 17:32:40 +02:00
|
|
|
.editor {
|
2024-04-14 11:50:12 +02:00
|
|
|
background-color: #41005a;
|
2024-04-13 17:32:40 +02:00
|
|
|
margin-left: 1em;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-04-14 17:33:35 +02:00
|
|
|
justify-content: flex-end;
|
2024-04-07 21:31:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: 500;
|
|
|
|
color: #646cff;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #535bf2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
input,
|
|
|
|
button {
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
padding: 0.6em 1.2em;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 500;
|
|
|
|
font-family: inherit;
|
2024-04-13 17:32:40 +02:00
|
|
|
color: #ffffff;
|
|
|
|
background-color: #770079;
|
2024-04-07 21:31:08 +02:00
|
|
|
transition: border-color 0.25s;
|
|
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
border-color: #396cd8;
|
|
|
|
}
|
2024-04-12 19:59:39 +02:00
|
|
|
|
2024-04-07 21:31:08 +02:00
|
|
|
button:active {
|
|
|
|
border-color: #396cd8;
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
}
|
|
|
|
|
2024-04-13 20:51:49 +02:00
|
|
|
#create-tag {
|
2024-04-13 17:32:40 +02:00
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
|
2024-04-13 20:51:49 +02:00
|
|
|
#create-input {
|
2024-04-13 17:32:40 +02:00
|
|
|
margin: 0.5em;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
2024-04-14 17:33:35 +02:00
|
|
|
border: 1px solid #3b3b3b;
|
2024-04-13 17:32:40 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
resize: none;
|
2024-04-14 11:50:12 +02:00
|
|
|
|
|
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
background-color: #252525;
|
2024-04-14 17:33:35 +02:00
|
|
|
color: #f0f0f0;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
2024-04-13 17:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#create-input:focus {
|
|
|
|
border-color: #cf66e9;
|
|
|
|
box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
|
2024-04-13 20:51:49 +02:00
|
|
|
outline: none;
|
|
|
|
/* Remove default focus outline */
|
2024-04-13 17:32:40 +02:00
|
|
|
}
|
|
|
|
|
2024-04-07 21:31:08 +02:00
|
|
|
input,
|
|
|
|
button {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2024-04-09 19:54:49 +02:00
|
|
|
#show-notes-button {
|
|
|
|
max-width: 30%;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2024-04-07 21:31:08 +02:00
|
|
|
#greet-input {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2024-04-12 19:59:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
background-color: #0f0f0f;
|
|
|
|
width: 35%;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2024-04-14 11:50:12 +02:00
|
|
|
.note-sidebar-container {
|
2024-04-14 17:33:35 +02:00
|
|
|
max-height: 90%;
|
2024-04-14 11:50:12 +02:00
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
2024-04-12 19:59:39 +02:00
|
|
|
.sidebar-note {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-04-13 17:32:40 +02:00
|
|
|
.sidebar-note:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #770079;
|
|
|
|
}
|
|
|
|
|
2024-04-12 19:59:39 +02:00
|
|
|
.sidebar-note-id {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-note-content {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-note-tag {
|
|
|
|
margin-left: 10px;
|
|
|
|
padding: 2px 6px;
|
|
|
|
border-radius: 4px;
|
2024-04-13 20:51:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CONTEXT MENU */
|
|
|
|
|
|
|
|
.context-menu {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu button {
|
|
|
|
display: block;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu button:hover {
|
|
|
|
background-color: #770079;
|
2024-04-14 11:50:12 +02:00
|
|
|
}
|
|
|
|
|
2024-04-14 17:33:35 +02:00
|
|
|
/* Searchbar */
|
|
|
|
|
|
|
|
.searchbar-container {
|
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#note-searchbar {
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
outline: none;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#note-searchbar::placeholder {}
|
|
|
|
|
2024-04-14 11:50:12 +02:00
|
|
|
/* MISC */
|
|
|
|
|
|
|
|
/* Fancier Scrollbar */
|
|
|
|
|
|
|
|
/* Hide scrollbar track */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 4px;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar:hover {
|
|
|
|
visibility: visible;
|
|
|
|
/* Show the scrollbar when hovered */
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #555;
|
2024-04-12 19:59:39 +02:00
|
|
|
}
|