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

improved styling for app #330

Open
wants to merge 1 commit into
base: main
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
9 changes: 5 additions & 4 deletions paras/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ body {
font-family: 'Arial', sans-serif; /* Use a modern font */
background-color: #f0f4f8; /* Soft background color for contrast */
color: #333; /* Dark text for readability */
margin: 0;
padding: 0;
height:100vh;
width:100vw;
/* body should cover entire view port */
}

.app {
Expand All @@ -18,7 +19,7 @@ body {

.header {
display: flex;

width:100vw;
justify-content: space-between;
align-items: center;
padding: 40px 20px; /* Adjusted padding for better spacing */
Expand All @@ -30,7 +31,7 @@ body {
.title {
flex-grow: 1;
text-align: center;
position: relative;
/* position: relative; no need to add position*/
left: 85px;
font-size: 28px; /* Increased font size */
letter-spacing: 1px; /* Added letter spacing for readability */
Expand Down