Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 10 additions & 18 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent);
background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
opacity: 0.1;
z-index: -1;
animation: gradientShift 8s ease infinite;
Expand All @@ -36,7 +36,7 @@
--bg-light: #1a1a2e;
--bg-lighter: #2a2a3e;
--shadow: rgba(0, 0, 0, 0.3);
--gradient: linear-gradient(135deg, var(--primary), var(--secondary),));
--gradient: linear-gradient(135deg, var(--primary), var(--secondary));
--gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

Expand Down Expand Up @@ -70,7 +70,6 @@ body {
align-items: center;
justify-content: center;
z-index: 9999;
z-index: 1;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

Expand All @@ -89,8 +88,7 @@ body {
border: 4px solid rgba(52, 152, 219, 0.2);
border-top: 4px solid var(--primary);
border-radius: 50%;
animation: spin 0s linear infinite;;
animation: fadeInUp 1s ease-out forwards; animation: fadeInUp;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}

Expand Down Expand Up @@ -290,7 +288,7 @@ nav {

.hero-title {
font-size: 56px;
margin-bottom: -20px;
margin-bottom: 20px;
line-height: 1.2;
}

Expand Down Expand Up @@ -672,7 +670,6 @@ section {
background: var(--gradient);
transform: scaleX(0);
transform-origin: left;
transform-origin: right;
transition: transform 0.3s ease;
}

Expand All @@ -696,8 +693,6 @@ section {
justify-content: center;
color: var(--primary);
}
.skill-icon { color: red !important; }


.skill-card h3 {
font-size: 24px;
Expand All @@ -708,17 +703,16 @@ section {
.skill-card p {
color: var(--text-light);
margin-bottom: 20px;
transition: transform 0.3s
}
.skill-card:hover { transform: scale(1.1) }

.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}

.skill-tagss {
.skill-tag {
background: rgba(52, 152, 219, 0.1);
color: var(--primary);
padding: 5px 15px;
Expand Down Expand Up @@ -778,8 +772,7 @@ section {
display: flex;
align-items: center;
justify-content: center;
opacity: 90;
opacity:1;
opacity: 0;
transition: all 0.3s ease;
}

Expand Down Expand Up @@ -907,7 +900,6 @@ section {
justify-content: center;
color: var(--primary);
transition: all 0.3s ease;
transition: none;
}

.social-links a:hover {
Expand Down Expand Up @@ -1059,7 +1051,7 @@ footer {
}


@media "max-width: 1024px":{
@media (max-width: 1024px) {
.hero-title {
font-size: 48px;
}
Expand All @@ -1078,7 +1070,7 @@ footer {
}
}

@media "max-width: 768px": {
@media (max-width: 768px) {
header {
padding: 15px 20px;
}
Expand Down Expand Up @@ -1163,7 +1155,7 @@ footer {
}
}

@media ('max-width: 480px") {
@media (max-width: 480px) {
.hero-title {
font-size: 32px;
}
Expand Down