Skip to content

Commit

Permalink
-q
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoquinalha committed Dec 31, 2023
1 parent 2eff23d commit 796ac26
Show file tree
Hide file tree
Showing 3 changed files with 329 additions and 204 deletions.
30 changes: 25 additions & 5 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,24 @@ body {
background: #16a34a;
}

#myCanvas {
#gradient,
#commits {
position: fixed;
top: 0;
left: 0;
z-index: -1;
z-index: -2;
width: 100vw;
height: 100vh;
overflow: hidden;
background: #0a0a0a;
display: flex;
flex-wrap: wrap;
gap: 4px;
}

#gradient {
z-index: -1;
}

.square {
flex-grow: 1;
background: #ffffff;
Expand Down Expand Up @@ -63,7 +67,23 @@ body {
color: #0a0a0a;
}

.hero {
.gradient {
position: fixed;
top: 0;
left: 0;
z-index: -1;
background: radial-gradient(
circle at 10% 10%,
rgba(10, 10, 10, 0.5),
rgba(10, 10, 10, 0.9),
rgba(10, 10, 10, 1),
rgb(10, 10, 10),
rgb(10, 10, 10, .9),
rgb(10, 10, 10, .9)
);
}

/* .hero {
background: radial-gradient(
circle at 10% 10%,
rgba(10, 10, 10, 0.5),
Expand All @@ -81,7 +101,7 @@ body {
rgba(10, 10, 10, 1),
rgb(10, 10, 10)
);
}
} */

.hero-img {
box-shadow: 20px 20px 0px #15a04b;
Expand Down
Loading

0 comments on commit 796ac26

Please sign in to comment.