Init Commit

This commit is contained in:
2026-05-18 11:46:02 +02:00
commit 2de3502fbc
382 changed files with 19583 additions and 0 deletions
+108
View File
@@ -0,0 +1,108 @@
.skill-bar {
height: 10px;
background-color: #e9ecef;
border-radius: 5px;
margin-bottom: 5px;
overflow: hidden;
}
.skill-bar-fill {
height: 100%;
background-color: $primary;
border-radius: 5px;
transition: width 1s ease-in-out;
}
.skill-item {
margin-bottom: 30px;
padding: 20px;
border-radius: 8px;
background-color: #f8f9fa;
transition: all 0.3s ease;
}
.skill-item:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transform: translateY(-5px);
}
.skill-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.skill-name {
font-weight: 600;
font-size: 1.1rem;
margin: 0;
}
.skill-level {
font-size: 0.9rem;
color: #6c757d;
}
.skill-years {
display: inline-block;
padding: 3px 8px;
background-color: #e9ecef;
border-radius: 20px;
font-size: 0.8rem;
margin-left: 10px;
}
.skill-description {
font-size: 0.9rem;
color: #6c757d;
margin-top: 10px;
}
.site-skills-section {
padding: 100px 0;
}
.site-skills-title {
margin-bottom: 20px;
font-weight: 700;
}
.site-skills-description {
max-width: 800px;
margin: 0 auto 50px;
}
@media (max-width: 768px) {
.site-skills-section {
padding: 60px 0;
}
}
/* Dark mode support */
@include color-mode(dark) {
.skill-item {
background-color: #2d2d2d;
}
.skill-name {
color: #fff;
}
.skill-level, .skill-description {
color: #adb5bd;
}
.skill-years {
background-color: #444;
color: #ddd;
}
.skill-bar {
background-color: #444;
}
.skill-bar-fill {
background-color: $dark-primary;
}
}