Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
add menus
  • Loading branch information
dwain-barnes authored Jun 28, 2024
1 parent e9941e5 commit 56ce7a9
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,52 @@ body {
font-weight: bold;
color: #00ff00;
text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
}

.menu-screen {
text-align: center;
background-color: rgba(20, 20, 20, 0.8);
padding: 30px;
border-radius: 20px;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
color: #ffffff;
}

.menu-screen h1, .menu-screen h2 {
margin-bottom: 20px;
}

.menu-screen button {
display: block;
width: 200px;
margin: 10px auto;
padding: 10px;
font-size: 18px;
background-color: #00ff00;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.menu-screen button:hover {
background-color: #00cc00;
}

#card-info-container {
max-height: 400px;
overflow-y: auto;
margin-top: 20px;
text-align: left;
}

#card-info-container h3 {
margin-top: 15px;
margin-bottom: 5px;
color: #00ff00;
}

#card-info-container p {
margin-bottom: 15px;
}

0 comments on commit 56ce7a9

Please sign in to comment.