sparqapi/api/application/views/report_templates/dsc_progress.php

142 lines
2.3 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
<style type="text/css">
/* ######### TOOLTIP CSS END ######### */
.PB-container {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.PB-skill h3 {
font-weight: 400;
letter-spacing: 1px;
margin-top: 40px;
margin-bottom: 5px;
color: #fff;
font-size: 16px;
}
.PB-progress-bar {
width: 600px;
height: 10px;
background: #959595;
border-radius: 5px;
}
.PB-progress-bar div {
width: 0%;
height: 10px;
border-radius: 5px;
}
.PB-progress-bar span {
width: 41px;
height: 41px;
background: #FFF;
border-radius: 50%;
float: right;
margin-top: -15px;
margin-right: -20px;
color: #333;
display: flex;
align-items: center;
justify-content: center;
}
.PB-html {
background: #0191ed;
animation: PB-html 1s linear forwards
}
.PB-html span {
border: 1px solid #e91e63;
}
@keyframes PB-html {
100% {
width: 86%;
}
}
.PB-red {
background: #e00201;
animation: PB-red 1s linear forwards
}
.PB-red span {
border: 1px solid #e00201;
}
@keyframes PB-red {
100% {
width: 70%;
}
}
.PB-green {
background: #33cc33;
animation: PB-green 1s linear forwards
}
.PB-green span {
border: 1px solid #33cc33;
}
@keyframes PB-green {
100% {
width: 55%;
}
}
.PB-orange {
background: #ff9900;
animation: PB-orange 1s linear forwards
}
.PB-orange span {
border: 1px solid #ff9900;
}
@keyframes PB-orange {
100% {
width: 67%;
}
}
</style>
<div class="PB-container">
<div class="PB-skills">
<h3>Similarty</h3>
<div class="PB-progress-bar">
<div class="PB-red">
<span>70%</span>
</div>
</div>
<h3>Similarty</h3>
<div class="PB-progress-bar">
<div class="PB-green">
<span>55%</span>
</div>
</div>
<h3>Similarty</h3>
<div class="PB-progress-bar">
<div class="PB-orange">
<span>67%</span>
</div>
</div>
<h3>Similarty</h3>
<div class="PB-progress-bar">
<div class="PB-html">
<span>37</span>
</div>
</div>
</div>
</body>
</html>