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

More visually appealing css changes #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Mukulprajapatiii
Copy link

The updated CSS provided has several improvements over the original CSS to enhance the visual appeal and usability of the form. Here are the key changes:

1. General Styles
Added smooth scrolling:

@media (prefers-reduced-motion: no-preference) {

  • {
    scroll-behavior: smooth;
    }
    }

2. Body
Changed font stack for better compatibility:

font-family: Helvetica, Arial, sans-serif;

3. Header
Increased header height and added padding:

height: 70px;
padding: 0 20px;

Added z-index to keep the header above other content:

z-index: 1000;

4. Heading
Increased font size for the main heading:

font-size: min(5vw, 1.5em);

5. Navigation
Removed unnecessary flex-wrap property and ensured proper alignment and spacing.

6. Sections
Added styles for card-like appearance:

background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 20px;
margin: 20px auto;

7. Headings
Font family and size adjustments for section headings:

font-size: 1.5em;

8. Form Layout
Used flexbox for form rows for better layout and spacing:

display: flex;
flex-direction: column;
gap: 10px;

9. Labels and Inputs
Improved label and input spacing:
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
box-sizing: border-box;

10. Radio Buttons
Improved styling for radio buttons:

width: auto;
margin-right: 10px;

11. Button
Enhanced button appearance and hover effect:

background: #1b1b32;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;

Copy link

vercel bot commented Jun 24, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
accessible-html-css-quiz ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 24, 2024 1:26pm

@Mukulprajapatiii
Copy link
Author

It added more aesthetic visuals, what css needs to do btw :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant