Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
hoz-efa authored Sep 28, 2024
1 parent b7b5695 commit adc0c47
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ body {
background-color: var(--background-color);
color: var(--text-color);
transition: background-color 0.3s ease, color 0.3s ease;
font-size: 16px;
font-size: 16px; /* Ensure font size is at least 16px */
line-height: 1.6;
min-height: 100vh;
display: flex;
Expand Down Expand Up @@ -379,6 +379,7 @@ body {
border-radius: 5px;
background-color: transparent;
color: var(--text-color);
font-size: 16px; /* Ensure input font size is at least 16px */
}

.contact-form input::placeholder,
Expand All @@ -393,6 +394,7 @@ body {
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}

.contact-form button:hover {
Expand Down Expand Up @@ -542,9 +544,10 @@ body.modal-active > *:not(.modal):not(.modal-overlay) {
}

@media (max-width: 768px) {
body {
/* Removed font-size adjustment to keep font-size at least 16px */
/* body {
font-size: 14px;
}
} */

.name {
font-size: 1.3rem;
Expand All @@ -553,7 +556,7 @@ body.modal-active > *:not(.modal):not(.modal-overlay) {
.job-title,
.location,
.bio {
font-size: 0.85rem;
font-size: 0.9rem;
}

.timeline-content h3 {
Expand All @@ -562,7 +565,7 @@ body.modal-active > *:not(.modal):not(.modal-overlay) {

.timeline-content p,
.skills-category ul li {
font-size: 0.85rem;
font-size: 0.9rem;
}

.top-nav {
Expand Down

0 comments on commit adc0c47

Please sign in to comment.