diff --git a/src/componets/NoResults.js b/src/componets/NoResults.js
index 6db3f49..684bc3b 100644
--- a/src/componets/NoResults.js
+++ b/src/componets/NoResults.js
@@ -2,7 +2,7 @@ import React from "react";
const NoResults = () => {
return (
-
+
diff --git a/src/componets/TagSelection.js b/src/componets/TagSelection.js
index 5515638..cdc9106 100644
--- a/src/componets/TagSelection.js
+++ b/src/componets/TagSelection.js
@@ -33,7 +33,7 @@ export default function TagSelection({ setTags, tags, tag = [], lightMode }) {
borderColor: "rgb(141, 141, 141)",
opacity: "90%",
color: "gray",
- background: lightMode ? "lightyellow" : "#273949",
+ background: lightMode ? "#e0e0e0" : "#273949",
boxShadow:
"rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px",
}),
@@ -53,7 +53,7 @@ export default function TagSelection({ setTags, tags, tag = [], lightMode }) {
control: (provided, state) => ({
...provided,
- background: lightMode ? "lightyellow" : "#273949",
+ background: lightMode ? "#e0e0e0" : "#273949",
border: "none",
borderRadius: "0px",
boxShadow: state.isFocused
diff --git a/src/index.js b/src/index.js
index bd6f7fb..0b0b6d5 100644
--- a/src/index.js
+++ b/src/index.js
@@ -6,9 +6,7 @@ import { BrowserRouter } from "react-router-dom";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
-
-
-
-
-
+
+
+
);
diff --git a/src/styles/App.css b/src/styles/App.css
index 2f65e1b..70e6342 100644
--- a/src/styles/App.css
+++ b/src/styles/App.css
@@ -60,39 +60,11 @@
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
-.btn {
- position: relative;
- border-radius: 100%;
- font-family: "Font Awesome 5 Free";
- width: 40px;
- height: 40px;
- padding: 10px;
- font-size: 1.1rem;
- cursor: pointer;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
- border: none;
- transition: background-color 0.1s;
-}
-
-.btn:active {
- box-shadow: 0px 0px 10px rgb(83, 143, 255);
-}
-
-.add-btn {
- margin-left: auto;
-}
-
textarea:focus,
input:focus {
outline: none;
}
-.dark-light-btn {
- margin-left: 10px;
- font-size: 1.2em;
-}
-
.select {
- font-family: "Font Awesome 5 Free"
+ font-family: "Font Awesome 5 Free";
}
diff --git a/src/styles/Filters.css b/src/styles/Filters.css
index fb94dd6..1e4a7bb 100644
--- a/src/styles/Filters.css
+++ b/src/styles/Filters.css
@@ -69,34 +69,9 @@
padding: 10px;
font-size: 1.1rem;
cursor: pointer;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
border: none;
}
-.filter label:active {
- box-shadow: 0px 0px 10px rgb(83, 143, 255);
-}
-
-.apply-btn {
- font-family: "Font Awesome 5 Free";
- font-size: 1.2rem;
- padding: 10px;
- cursor: pointer;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
- border: none;
- margin-top: 20px;
- display: block;
- margin-left: auto;
- margin-right: auto;
- transition: background-color 0.1s;
-}
-
-.apply-btn:active {
- box-shadow: 0px 0px 10px rgb(83, 143, 255);
-}
-
@keyframes fadein {
from {
opacity: 0%;
diff --git a/src/styles/List.css b/src/styles/List.css
index 67c15ff..959315f 100644
--- a/src/styles/List.css
+++ b/src/styles/List.css
@@ -24,9 +24,6 @@
display: flex;
justify-content: space-between;
align-items: center;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
- rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.list-row:hover img {
@@ -58,9 +55,6 @@
justify-content: space-between;
align-items: center;
text-align: center;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
- rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.etc {
display: flex;
@@ -131,21 +125,6 @@
opacity: 100%;
}
-.edit-btn {
- margin: 20px 20px 20px 0px;
- width: 50px;
- height: 50px;
- font-size: 1.5rem;
-}
-
-.edit-btn:hover {
- background-color: rgb(76, 117, 170);
-}
-
-.edit-btn:active {
- box-shadow: 0px 0px 10px rgb(83, 143, 255);
-}
-
.row-name {
font-size: 2rem;
word-break: break-word;
@@ -178,32 +157,6 @@
display: inline;
}
-.delete {
- margin-top: 20px;
- margin-left: 10px;
- font-size: 1.1rem;
- width: 40px;
- height: 40px;
- position: relative;
- border-radius: 100%;
- font-family: "Font Awesome 5 Free";
- width: 40px;
- height: 40px;
- padding: 10px;
- font-size: 1.1rem;
- cursor: pointer;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
- background-color: rgba(255, 75, 75, 0.8);
- color: white;
- border: none;
- transition: box-shadow 0.1s;
-}
-
-.delete:hover {
- box-shadow: 0px 0px 10px rgb(255, 83, 140);
-}
-
.date {
font-weight: 500;
font-size: 0.7rem;
@@ -216,9 +169,7 @@
text-align: center;
padding-top: 5%;
padding-bottom: 5%;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
- margin-top: 10px;
+ margin-top: 20px;
}
.edit-title {
@@ -227,6 +178,7 @@
.title-delete-group {
text-align: center;
+ margin-top: 10px;
}
.list-collection-label {
diff --git a/src/styles/SendItem.css b/src/styles/SendItem.css
index f9b8eb4..5ff7cac 100644
--- a/src/styles/SendItem.css
+++ b/src/styles/SendItem.css
@@ -38,7 +38,6 @@
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
position: absolute;
z-index: 2;
- background-color: #1f2c38;
overflow-x: hidden;
overflow-y: auto;
}
@@ -76,25 +75,6 @@
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
-.send-btn {
- font-family: "Font Awesome 5 Free";
- font-size: 1.2rem;
- padding: 10px;
- cursor: pointer;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
- rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
- border: none;
- margin-top: 20px;
- display: block;
- margin-left: auto;
- margin-right: auto;
- transition: background-color 0.1s;
-}
-
-.send-btn:active {
- box-shadow: 0px 0px 10px rgb(83, 143, 255);
-}
-
@keyframes fadein {
from {
opacity: 0%;
diff --git a/src/styles/index.css b/src/styles/index.css
index ba98e3b..17a83c0 100644
--- a/src/styles/index.css
+++ b/src/styles/index.css
@@ -5,7 +5,7 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
- background-color: #1f2c38;
+ background-color: #273949;
text-shadow: 0px 1px 2px #000000;
color: white;
transition: background-color 0.1s;
@@ -19,24 +19,33 @@ body {
/* Dark Mode settings (Default) */
-.dark-light-btn::before {
+.neomorphisim {
+ border-radius: 50px;
+ background: #273949;
+ box-shadow: 5px 5px 10px #21303e,
+ -5px -5px 10px #2d4254;
+}
+
+.dark-light::before {
content: "";
}
-.no-results {
- background-color: #1f2c38;
-}
-
-.send-btn,
-.apply-btn {
- background-color: #273949;
- color: #ffffffb6;
-}
-
-.btn:hover,
-.send-btn:hover,
-.apply-btn:hover {
- background-color: rgb(76, 117, 170);
+.App .aws-btn {
+ font-family: "Font Awesome 5 Free";
+ --button-default-height: 51px;
+ --button-default-font-size: 14px;
+ --button-default-border-radius: 25px;
+ --button-horizontal-padding: 20px;
+ --button-raise-level: 3px;
+ --button-hover-pressure: 0;
+ --transform-speed: 0.025s;
+ --button-primary-color: #273949;
+ --button-primary-color-dark: #c6e4ff;
+ --button-primary-color-light: #c6e4ff;
+ --button-primary-color-hover: #0d4a7f;
+ --button-primary-color-active: #0f5ca0;
+ --button-primary-border: none;
+ z-index: 0;
}
.title {
@@ -47,97 +56,66 @@ body {
color: rgb(194, 193, 193);
}
-.btn {
- color: #ffffffb6;
- background-color: #273949;
-}
-
-.edit-btn {
- background-color: #1f2c38;
-}
-
-.no-results,
-.list-row {
- transition: background-color 0.1s;
- background-color: #273949;
-}
-
.search {
transition: background-color 0.1s;
background-color: #273949;
color: white;
}
-.filter {
- background-color: #1f2c38;
-}
-
-.section > label {
+.filter, .box {
background-color: #273949;
- color: #ffffffb6;
}
/* Light Mode settings */
-.light .dark-light-btn::before {
+.light .dark-light::before {
content: "";
}
.light {
text-shadow: 0px 1px 2px #ffffff;
- background-color: rgb(233, 220, 179);
+ background-color: #e0e0e0;
color: rgb(64, 64, 64);
}
+.light .neomorphisim {
+ border-radius: 50px;
+ background: #e0e0e0;
+ box-shadow: 5px 5px 10px #bebebe,
+ -5px -5px 10px #ffffff;
+}
+
.light .title {
color: rgb(0, 0, 0);
}
-.light .list-row {
- background-color: lightyellow;
-}
-
-.light .btn {
- background-color: lightyellow;
- color: gray;
-}
-
.light input {
- background-color: lightyellow;
+ background-color: #e0e0e0;
color: black;
}
-.light .box,
-.light .edit-btn {
- background-color: rgb(233, 220, 179);
+.light .box, .light .filter {
+ background-color: #e0e0e0;
}
.light .link {
color: rgb(102, 102, 102);
}
-.light .filter {
- background-color: rgb(233, 220, 179);
-}
-
-.light .section > label {
- background-color: lightyellow;
- color: #4b4b4bb6;
-}
-
-.light .send-btn,
-.light .apply-btn {
- background-color: lightyellow;
- color: #717171b6;
-}
-
-.light .btn:hover,
-.light .send-btn:hover,
-.light .apply-btn:hover {
- background-color: rgb(55, 131, 237);
- color: #d8d8d8;
-}
-
-.light .no-results {
- background-color: lightyellow;
+.light .aws-btn {
+ font-family: "Font Awesome 5 Free";
+ --button-default-height: 51px;
+ --button-default-font-size: 14px;
+ --button-default-border-radius: 25px;
+ --button-horizontal-padding: 20px;
+ --button-raise-level: 3px;
+ --button-hover-pressure: 0;
+ --transform-speed: 0.025s;
+ --button-primary-color: #e0e0e0;
+ --button-primary-color-dark: #354c7d;
+ --button-primary-color-light: #354c7d;
+ --button-primary-color-hover: #e1eaf1;
+ --button-primary-color-active: #e2e2e2;
+ --button-primary-border: none;
+ z-index: 0;
}