Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
added banner change
  • Loading branch information
Demothedread authored Apr 15, 2024
1 parent 0d4e4f0 commit d6b9177
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
#banner {
#banner {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 50%;
background-color: #fff;
color: #333;
padding: 10px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.25);
z-index: 1000;
}

canvas {
position: absolute;
top: 50px; /* Account for the banner height */
left: 0;
right: 0;
bottom: 0;
width: 100%;
z-index: 1000; /* Ensure it stays on top of other content */
}

}

body, html {
Expand Down

0 comments on commit d6b9177

Please sign in to comment.