Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update App.css #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
.App {
background-color: #212832;
color: white;
}
background-color: #212832; /* Set the background color to a dark shade */
color: white; /* Set the text color to white for better readability */

/* Add padding to the content for spacing and readability */
padding: 20px;

/* Add a border-radius to round the corners of the container */
border-radius: 10px;

/* Add a box shadow for a subtle elevation effect */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

/* Center the container horizontally and vertically on the page */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

/* Set a minimum height to ensure content is visible */
min-height: 100vh;
}