-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 1.85 KB
/
style.css
File metadata and controls
107 lines (91 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
padding-top: 60px;
text-align: left;
background-color: #606060;
font-family: 'Karla', sans-serif;
}
body.light{background-color: #808080}
body.dark{background-color: #606060}
.container.dark{background-color: #606060}
.container.light{background-color:#808080}
.container{
padding-bottom: 5%;
padding-top:5%;
}
.container-fluid {
width: 100%;
color: white;
margin-right: auto;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
color: white;
}
.navbar ul{
list-style: none;
margin: 0 auto;
padding: 0;
overflow: hidden;
}
.demo{ background: #7933FF; }
.progress{
height: 40px;
background: #5800FF;
border-radius: 100px;
box-shadow: none;
margin-top: 40px;
position: relative;
}
.progress .progress-title{
width: 20%;
height: 100%;
background:#ef6e06;
border-radius: 100px 0 0 100px;
float: left;
margin: 0;
font-size: 15px;
color: #000;
line-height: 40px;
letter-spacing: 1px;
text-align: center;
text-transform: uppercase;
position: relative;
}
.progress .progress-title:after{
content: "";
border-left: 10px solid #ef6e06;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
position: absolute;
top: 10px;
right: -10px;
z-index: 1;
}
.progress .progress-bar{
width: 80%;
background: #3D7FF5;
box-shadow: none;
position: relative;
}
.progress .progress-value{
height: 100%;
border-radius: 0 100px 100px 0;
font-size: 15px;
font-weight: bold;
line-height: 40px;
color: #fff;
animation: animate-positive 2s;
}
.progress.violet .progress-value{ background: #0D5FF2; }
@keyframes animate-positive{
0%{ width: 0; }
}
@media only screen and (max-width: 480px){
.progress .progress-title{
font-size: 12px;
letter-spacing: 0;
}
}