Skip to content

Commit

Permalink
Feat(CSS) Added root colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorSvertoka committed Sep 14, 2023
1 parent 3b31d9f commit 9737ed9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
@import-normalize; /* bring in normalize.css styles */

:root {
/* colors */
--black-color: #040404;
--orange-color: #e6533c;
--orange-light-color: #ef8964;
--beige-color: #efa082;
--white-color: #efede8;

/* accent colors */
--normal-color: rgba(239, 237, 232, 0.3);
--hover-color: #e6533c;
--success-color: #3cbf61;
--error-color: #d80027;

/* linear-gradient */
--linear-gradient: linear-gradient(
80deg,
#040404 -2.45%,
rgba(4, 4, 4, 0) 68.17%
);
}

body {
background-color: #fff;
/* background-image: url('./assets/background.png'); */
Expand All @@ -13,6 +35,7 @@ body {
width: 100%;
height: 100vh;
}

h1,
h2,
h3,
Expand All @@ -22,17 +45,21 @@ h6,
p {
margin-top: 0;
}

a {
text-decoration: none;
}

ul {
list-style: none;
padding: 0;
margin: 0;
}

img {
display: block;
}

button {
cursor: pointer;
}

0 comments on commit 9737ed9

Please sign in to comment.