63 lines
1.1 KiB
SCSS
63 lines
1.1 KiB
SCSS
// main: ../main.scss
|
|
/*--------------------------------------------------------------
|
|
# Skills Section
|
|
--------------------------------------------------------------*/
|
|
.skills {
|
|
.content {
|
|
h3 {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
p {
|
|
color: color-mix(in srgb, var(--default-color), transparent 30%);
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
|
|
li {
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.progress {
|
|
height: 60px;
|
|
display: block;
|
|
background: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.progress .skill {
|
|
color: var(--default-color);
|
|
padding: 0;
|
|
margin: 0 0 6px 0;
|
|
text-transform: uppercase;
|
|
display: block;
|
|
font-weight: 600;
|
|
font-family: var(--heading-font);
|
|
}
|
|
|
|
.progress .skill .val {
|
|
float: right;
|
|
font-style: normal;
|
|
}
|
|
|
|
.progress-bar-wrap {
|
|
background: color-mix(in srgb, var(--heading-color), transparent 90%);
|
|
height: 10px;
|
|
}
|
|
|
|
.progress-bar {
|
|
width: 1px;
|
|
height: 10px;
|
|
transition: .9s;
|
|
background-color: var(--heading-color);
|
|
}
|
|
} |