Implemented navbar

This commit is contained in:
Florian Sylvain
2022-12-23 23:41:34 +01:00
parent 17b41cc232
commit 1f1c7914a8
9 changed files with 136 additions and 15 deletions
+7 -4
View File
@@ -21,6 +21,9 @@
--neutral-dark: #121212;
--neutral-medium: #707070;
--neutral-light: #aaaaaa;
--neutral-verylight: #e7e7e7;
--brand-blue: #00ACD7;
--error: #E80000;
}
body {
@@ -40,9 +43,9 @@ h2, h3, h4, h5, h6 {
* {
font-family: 'Hind', sans-serif;
box-sizing: border-box;
color: var(--neutral-dark);
box-sizing: border-box;
}
.label-input,
@@ -75,11 +78,11 @@ h2, h3, h4, h5, h6 {
}
.label-input-error input {
border: solid 1.75px red;
border: solid 1.75px var(--error);
}
.label-input-error p {
color: red;
color: var(--error);
}
.button-primary,