Spaces:
Sleeping
Sleeping
File size: 2,248 Bytes
b8d618b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
/* Responsive Design Styles */
@media (max-width: 1024px) {
/* Typing text adjustments for tablets */
.typing-container {
font-size: 1.8rem;
min-height: 3.5rem;
}
}
@media (max-width: 768px) {
/* Navigation */
.nav-menu {
display: none;
}
.hamburger {
display: flex;
}
/* Hero Section */
.hero-title {
font-size: 1.5rem;
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
/* Typing text for mobile */
.typing-container {
font-size: 1.6rem;
min-height: 3rem;
}
/* Skills Section */
.skills-grid {
grid-template-columns: 1fr;
}
/* Projects Section */
.projects-grid {
grid-template-columns: 1fr;
}
/* Contact Section */
.contact-info {
flex-direction: column;
}
}
@media (max-width: 480px) {
/* Base adjustments */
.container {
padding: 0 15px;
}
/* Typography */
.section-title {
font-size: 2rem;
}
/* Hero Section */
.glitch {
font-size: 2rem;
letter-spacing: 2px;
}
.hero-intro {
font-size: 1.2rem;
}
.hero-title {
font-size: 1.3rem;
}
.typing-container {
font-size: 1.4rem;
min-height: 3rem;
margin: 1.5rem 0 2rem 0;
}
/* Buttons */
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
/* About Section */
.about-content {
gap: 1.5rem;
}
.profile-image {
width: 180px;
height: 220px;
}
/* Skills Section */
.skill-category {
padding: 1.5rem;
}
.skills-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
/* Projects Section */
.project-card {
padding: 1.5rem;
}
.projects-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
/* Timeline */
.timeline {
padding-left: 30px;
}
.timeline-marker {
left: -35px;
}
.timeline-content {
padding: 1.5rem;
}
} |