﻿
/* Rating Bar */
.skills {
    width: 100%;
    max-width: 600px;
    padding: 0 0px 0px 20px;
}

.skill-name {
    font-size: 10px;
    font-weight: 700;
    color: darkgrey;
    margin: 10px 0;
}

.skill-bar {
    height: 14px;
    border-radius: 5px;
    border: 1px solid #edf2f4;
}

.skill-percentage {
    height: 12px;
    border-radius: 5px;
    position: relative;
    animation: fillBars 5s;
}

@keyframes fillBars {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Rating Bar */
