diff --git a/Resume.css b/Resume.css index cfd806e..3b3fd82 100644 --- a/Resume.css +++ b/Resume.css @@ -227,6 +227,8 @@ body { display: flex; flex-direction: column; justify-content: space-between; + + flex-wrap: wrap; position: relative; } .achive-entry{ @@ -468,6 +470,7 @@ button { #download-resume { background-color: #5cb85c; /* Bootstrap success color */ color: white; + } .ui-autocomplete { max-height: 150px; @@ -476,4 +479,7 @@ button { border: 1px solid #ddd; background-color: #fff; } - \ No newline at end of file + + + + diff --git a/about.html b/about.html index 38bbf4e..812be57 100644 --- a/about.html +++ b/about.html @@ -1,5 +1,6 @@ + @@ -7,196 +8,232 @@ - + - - - + +
-
- - - - - + + @@ -89,12 +153,12 @@

Review and Download

3 Step 3 - +

Fill Your Information

- +

Personal Information

@@ -105,10 +169,10 @@

Personal Information

- + - +
@@ -242,7 +306,7 @@

Languages (Optional)

@@ -334,4 +406,5 @@

Connect With Us

+ \ No newline at end of file diff --git a/style.css b/style.css index c3925ad..556b16e 100644 --- a/style.css +++ b/style.css @@ -82,143 +82,149 @@ header { top: 0; left: 0; right: 0; - background: var(--soft-teal); - /*Changed background to Deep Teal */ - padding: 2rem 9%; - display: flex; - align-items: center; - justify-content: space-between; z-index: 1000; - box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);/ + display: flex; + justify-content: space-between; + align-items: center; + padding: 15px 30px; + background-color: var(--deep-teal); } -header .logo { - font-size: 3rem; - - font-family: 'Poppins', sans-serif; - color: #353047; - +.logo { + font-size: 28px; + font-weight: bold; + transition: color 0.3s; color: var(--off-white); - /* White logo for contrast */ - font-weight: bolder; -} - -.logo img { - width: 100px; - padding: 0px 6px; - margin-right: -14px; } -header .logo:hover { - font-size: 3rem; - color: var(--soft-gold); - /* Soft Gold on hover for logo */ - font-weight: bolder; +.logo:hover { + color: var(--soft-gold); + transform: translateY(-2px); text-decoration: none; } -header .logo { - font-size: 3rem; - color: white; - font-weight: bolder; - font-size: 2.5rem; +.navbar { + display: flex; + justify-content: center; + align-items: center; + flex: 1; + padding-top: 10px; } +/* Links in navbar */ +.navbar a { + margin: 0 15px; + text-decoration: none; + color: var(--off-white); + font-size: 18px; + font-weight: 600; + transition: color 0.3s; +} - -header .logo span { - color: var(--off-white); - /* Updated to match logo color */ - +.navbar a:hover { + color: var(--soft-gold); } +.auth-and-theme { + display: flex; + align-items: center; +} -header .navbar a { - font-size: 2rem; - padding: 15px; - color: white; +#auth-links { + display: flex; + margin-right: 20px; } -header .navbar a:hover { - color: var(--soft-gold); - /* Soft Gold on hover */ +#auth-links a { + margin-left: 15px; text-decoration: none; - /* Ensure no underline by default */ + color: var(--off-white); + font-size: 18px; + font-weight: 600; + transition: color 0.3s; } -header .icons a { - font-size: 2.5rem; - color: white; - margin-left: 1.5rem; +#auth-links a:hover { + color: var(--soft-gold); } -header .navbar a { - font-size: 2rem; - padding: 0 1.5rem; - color: #ffffff; - font-size: 1.8rem; +.hamburger{ + display: none; } - -header .navbar a:hover { - color: var(--red); - text-decoration: none; - color: #ffffff; +.dark-mod{ + width: 20px; + margin-top: -11px; + cursor: pointer; } -header .icons a { - font-size: 2.5rem; - color: #ffffff; - margin-left: 1.5rem; - font-size: 2.2rem; +.dark-mode-toggle { + margin-left: 15px; + opacity: 0; } - -header .icons a:hover { - color: var(--purple); - color: #ffffff; - text-decoration: none; +.menu-toggle{ + opacity: 0; } -header #toggler { - display: none; -} +.menu-icon { + padding-top: 6px; + font-size: 24px; + cursor: pointer; + color: var(--off-white); -header .fa-bars { - font-size: 3rem; +} +label[for="toggler"] { + font-size: 20px; + cursor: pointer; + margin-left: 10px; color: var(--off-white); - /* White for better visibility */ - border-radius: .5rem; - padding: .5rem 1.5rem; - cursor: pointer; - border: .1rem solid rgba(0, 0, 0, 0.3); - display: none; } -/* Default light mode styles */ -body { - background-color: var(--off-white); - /* Changed from #ffffff to Off-White */ - color: var(--dark-slate); - /* Changed from #000000 to Dark Slate */ +.mobile-navbar{ + width: 100%; + height: 290px; + background-color: var(--deep-teal); + position: fixed; + display: none; + justify-content: space-around; + align-items: flex-start; + z-index: 999; + top: 71px; + border-top: 2px solid wheat; + transform: translateY(-100%); /* Initially hidden off-screen */ + transition: transform 0.4s ease; /* Smooth transition */ } +.mobile-navbar .main-links,.auth-links{ + display: flex; + flex-direction: column; +} +.mobile-navbar .main-links > a, .auth-links > a{ + color: var(--off-white); + margin: 10px; + font-size: 24px; + font-weight: bold; + text-decoration: none; + border: 1px dashed var(--soft-gold); + padding: 10px; +} -.dark-mode button { - background-color: #1e1e1e; - color: #ffffff; -} +@media (max-width: 900px) { + .navbar, #auth-links{ + display: none; + } + .hamburger{ + display: block; + } -.home .content h3 { - font-size: 5rem; - color: #333; - font-size: 4.5rem; - font-weight: 600; - line-height: 6rem; + .mobile-navbar{ + display: flex; + } + } -/* Add more styles as needed for other elements */ .home { display: flex; diff --git a/templates/classic.html b/templates/classic.html index d03580f..52cb200 100644 --- a/templates/classic.html +++ b/templates/classic.html @@ -8,35 +8,72 @@
-

[Name]

-

[Profile]

-

Contact Information

-

Email: [Email]

-

Contact No: [Contact]

-

Location: [Location]

+

${name}

+
+
+

${profile}

+

Contact Information

+

Email: ${email}

+

Contact No: ${contact}

+

Location: ${location}

+

Skills

+

${skills}

+

Education

+
+ ${educationHTML} +
+
+
+
+

Experience

+
+ ${experienceHTML} +
-

Education

-
- -
- -

Skills

-

[Skills]

- -

Experience

-
- -
- -

Achievements and Certifications

-
- -
- -

Projects

-
- +

Achievements and Certifications

+
+ +
+ +

Projects

+
+ ${projectHTML} +
+
+ diff --git a/templates/modern.html b/templates/modern.html index 5b90213..cba6295 100644 --- a/templates/modern.html +++ b/templates/modern.html @@ -4,6 +4,7 @@ + Modern Template @@ -11,9 +12,9 @@

[Name]

[Profile]

Contact Information

-

Email: [Email]

-

Contact No: [Contact]

-

Location: [Location]

+

Email: [Email]

+

Contact No: [Contact]

+

Location: [Location]

Education

@@ -38,5 +39,42 @@

Projects

+