diff --git a/static/css/style.css b/static/css/style.css
index 30e97c6..6239198 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -4,11 +4,12 @@
:root {
--contrast: #eee;
--contrast2: #fff;
- --bar: #f4f4f4;
+ --bar: #FAFAFA;
--editor: #ffffff;
--text-color: #000000;
- --border-color: #dadada;
+ --border-color: #dcdcdc;
--theme-color: #1c71d8;
+ --note-theme-color: #CDE1EC;
--hover-theme-color: #4990e7;
--nonimporant-theme-color: #EBEBEB;
--hover-nonimportant-theme-color: #dbdbdb;
@@ -18,9 +19,11 @@
--exit-color: #e9e9e9;
--session-color: #f4f4f4;
--note-button: #ffffff;
- --note-button-text-color: #ffffff;
+ --note-button-hover: #eeeeee;
+ --note-button-text-color: #000;
--unselected-note-button-text-color: #000000;
--option-background: #ffffff;
+ --icon-button-hover: #ececec;
--invertdm: 0%;
}
@@ -35,6 +38,7 @@
--text-color: #ffffff;
--border-color: #393b3d;
--theme-color: #3584e4;
+ --note-theme-color: #293B53;
--hover-theme-color: #4990e7;
--nonimporant-theme-color: #4A4A4A;
--hover-nonimportant-theme-color: #595959;
@@ -44,9 +48,11 @@
--exit-color: #454649;
--session-color: #2d2f31;
--note-button: #202124;
+ --note-button-hover: #2a2c2f;
--note-button-text-color: #ffffff;
--unselected-note-button-text-color: #ffffff;
--option-background: #202124;
+ --icon-button-hover: #333333;
--invertdm: 100%;
}
@@ -285,15 +291,13 @@ body {
.notesBar {
position: fixed;
width: 180px;
- top: 50px;
- height: calc(100% - 50px - 30px - 1px);
+ height: calc(100%);
background-color: var(--bar);
border: solid;
border-color: var(--border-color);
border-width: 0;
border-right-width: 1px;
- border-top-width: 1px;
}
.notesDiv {
@@ -308,11 +312,11 @@ body {
padding: 10px;
margin: 5px;
margin-bottom: 0;
- background-color: var(--note-button);
+ background-color: var(--bar);
color: var(--unselected-note-button-text-color);
border-radius: 8px;
- border: solid;
+ border: none;
border-color: var(--border-color);
border-width: 1px;
font-size: 15px;
@@ -321,6 +325,12 @@ body {
cursor: pointer;
white-space: nowrap;
overflow-x: hidden;
+
+ transition: 0.125s;
+}
+
+.notesBar .noteButton:hover {
+ background-color: var(--note-button-hover);
}
.notesBar .loadingStuff {
@@ -343,29 +353,35 @@ body {
}
.notesBar .selected {
- background-color: var(--theme-color) !important;
+ background-color: var(--note-theme-color) !important;
border: none;
color: var(--note-button-text-color);
}
+.notesBar .selected:hover {
+ background-color: var(--note-theme-color) !important;
+}
+
.notesBar .newNote {
height: 41px;
+ width: 41px;
line-height: 41px;
text-align: left;
font-size: 16px;
cursor: pointer;
- display: flex;
margin-top: 5px;
- background: var(--note-button);
+ background-color: var(--bar);
border-radius: 8px;
- border: var(--border-color) solid 1px;
- width: calc(100% - 7px - 7px - 3.5px);
- margin-left: 5px;
+ border: none;
+ transition: 0.125s;
+}
+
+.notesBar .newNote:hover {
+ background-color: var(--icon-button-hover);
}
.notesBar .newNote img {
- height: 32px;
- padding-right: 5px;
+ height: 20px;
filter: invert(var(--invertdm));
}
diff --git a/static/svg/add.svg b/static/svg/add.svg
index f6cd3df..71fc4f8 100644
--- a/static/svg/add.svg
+++ b/static/svg/add.svg
@@ -1 +1,2 @@
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/static/svg/delete.svg b/static/svg/delete.svg
index 560d174..003dd12 100644
--- a/static/svg/delete.svg
+++ b/static/svg/delete.svg
@@ -1 +1,10 @@
-
\ No newline at end of file
+
+
\ No newline at end of file