diff --git a/Faqs.html b/Faqs.html index b93b496..0252c38 100644 --- a/Faqs.html +++ b/Faqs.html @@ -9,108 +9,130 @@ - + + diff --git a/about.html b/about.html index 38bbf4e..ca3b60e 100644 --- a/about.html +++ b/about.html @@ -4,570 +4,126 @@ About Us - LinkedIn Resume Builder - + - - + - - - -
-
-
- - - - - - - -
-
-

About

-

LinkedIn Resume Builder simplifies your job search by converting your LinkedIn profile into a professional resume. In just a few clicks, you can generate a polished resume from your profile, saving time and effort. With accurate data and a selection of professional templates, it’s the easiest way to create a standout resume quickly and efficiently.

+
+

About

+

LinkedIn Resume Builder simplifies your job search by converting your LinkedIn profile into a professional resume. Generate a polished resume from your profile with just a few clicks.

+
+ +
+
+ Our Mission +

Our Mission

+

The LinkedIn Resume Builder transforms your LinkedIn profile into a polished resume to support your job search.

+
+ +
+ How It Works +

How It Works

+

Convert your LinkedIn profile into a formatted resume with these steps:

+
    +
  • Enter your LinkedIn profile URL.
  • +
  • Select a template.
  • +
  • Download your resume.
  • +
+
+ +
+ Why Choose Us +

Why Choose Us?

+
    +
  • Time-saving: No manual updates needed.
  • +
  • Professional templates: Choose modern designs.
  • +
  • User-friendly: Create resumes in clicks.
  • +
  • Accurate data: Auto-fills from LinkedIn.
  • +
-
- -
- -

Our Mission

-

- The LinkedIn Resume Builder aims to simplify your job search by transforming your LinkedIn profile into a polished, professional resume. - We recognize the challenges of job hunting and the importance of having an up-to-date resume. Our mission is to offer a fast, reliable solution - that saves you time and effort. -

+
+ +
+
diff --git a/login.html b/login.html index 2040471..b34e9e9 100644 --- a/login.html +++ b/login.html @@ -5,52 +5,52 @@ Register & Login - +
+ diff --git a/styles.css b/styles.css index 33cfc2a..1331c71 100644 --- a/styles.css +++ b/styles.css @@ -3,32 +3,37 @@ padding: 0; box-sizing: border-box; } -body{ + +body { background-color: rgb(174, 168, 168); } -.contact h2,h3{ + +.contact h2, h3 { max-width: 50rem; margin: 0 auto; text-align: center; margin-bottom: 2rem; } -.top_header{ - background-color: #aca7eb; - height: 8rem + +.top_header { + background-color: #aca7eb; + height: 8rem; } -.top_header h2{ + +.top_header h2 { font-size: 4rem; font-weight: 490; padding-top: 30px; } -.col{ +.col { max-width: 50rem; margin: 0 auto; text-align: center; margin-bottom: 1.5rem; } -.contact_info{ + +.contact_info { margin-top: 7rem; position: relative; display: flex; @@ -37,81 +42,93 @@ body{ align-items: center; padding: 20px 30px; width: 52vw; - height:22vh; - background-color:black; + height: 22vh; + background-color: black; border-radius: 0.8rem; border: 0.5px solid white; overflow: hidden; cursor: pointer; + transition: color 0.4s; /* Smooth transition for text color change */ } -.contact_info>h2{ + +.contact_info > h2 { margin-bottom: 20px; color: white; } -.contact_info>p{ + +.contact_info > p { display: flex; align-items: center; - gap:10px; + gap: 10px; margin-block: 5px; - cursor:auto; color: white; } -.contact_info p>i{ + +.contact_info p > i { font-weight: 600; -} -.contact_info p>a{ - color:white; } -.contact_info::after{ + +.contact_info p > a { + color: white; +} + +/* Background transition effect */ +.contact_info::after { content: ""; position: absolute; bottom: -100%; background: #aca7eb; - width:100%; + width: 100%; height: 100%; transition: 0.4s; z-index: 1; } -.contact_info:hover.contact_info::after{ + +.contact_info:hover::after { bottom: 0; } -.contact_info:hover.contact_info h2, -.contact_info:hover.contact_info p, -.contact_info:hover.contact_info i, -.contact_info:hover.contact_info a{ + +.contact_info:hover h2, +.contact_info:hover p, +.contact_info:hover i, +.contact_info:hover a { color: black; - z-index: 2; + z-index: 2; /* Ensure text is above the background */ } -.contact form{ +.contact form { max-width: 50rem; margin: 0.9rem auto; text-align: center; margin-bottom: 2rem; } -.contact form .input_box{ + +.contact form .input_box { display: flex; justify-content: space-between; flex-wrap: wrap; } + .contact form .input_box input, -.contact form textarea{ +.contact form textarea { width: 100%; padding: 1.2rem; font-size: 1rem; color: white; - background-color:black; - border-radius: .8rem; + background-color: black; + border-radius: 0.8rem; margin: 0.5rem 0; } -.contact form .input_box input{ - width: 49%; + +.contact form .input_box input { + width: 49%; /* Maintain space between inputs */ } -.contact form textarea{ + +.contact form textarea { resize: none; } -.contact form .btn{ +.contact form .btn { text-align: center; margin-top: 2rem; cursor: pointer; @@ -123,12 +140,13 @@ body{ font-weight: 400; background-color: #111; color: white; - transition: 0.5s; + transition: background-color 0.5s, color 0.5s, box-shadow 0.5s; } -.contact form .btn:hover{ - background-color:blue; + +.contact form .btn:hover { + background-color: blue; color: black; - border: black; - box-shadow: 0 0 5px 4px black; + border: 1px solid black; /* Change to a solid border */ + box-shadow: 0 0 5px 4px black; /* Enhance shadow effect */ font-weight: 600; -} \ No newline at end of file +}