forked from jsullivan/CSS3-Progress-bars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
94 lines (93 loc) · 3.52 KB
/
example.html
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
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>CSS3 Progress bars</title>
<link rel="stylesheet" href="css3-progress-bar.css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css3-progress-bar-ie.css" />
<![endif]-->
<style type="text/css">
body {
background: #D0D0D0;
padding: 5%;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
text-shadow: 0 1px 1px #F0F0F0;
}
h1 {
color: #444;
text-align: center;
font-weight: 700;
}
.bar_mortice {
margin:0 0 1em;
}
</style>
</head>
<body>
<h1>CSS3 Progress bars</h1>
<p>Default</p>
<div class="bar_mortice">
<div class="progress" style="width: 40%;"></div>
</div>
<p>Round<p>
<div class="bar_mortice rounded">
<div class="progress rounded" style="width: 80%;"></div>
</div>
<div class="bar_mortice rounded green_mortice">
<div class="progress rounded green" style="width: 50%;"></div>
</div>
<div class="bar_mortice rounded orange_mortice">
<div class="progress rounded orange" style="width: 75%;"></div>
</div>
<div class="bar_mortice rounded pink_mortice">
<div class="progress rounded pink" style="width: 35%;"></div>
</div>
<div class="bar_mortice rounded purple_mortice">
<div class="progress rounded purple" style="width: 59%;"></div>
</div>
<div class="bar_mortice rounded blue_mortice">
<div class="progress rounded blue" style="width: 40%;"></div>
</div>
<p>Combo</p>
<div class="bar_mortice">
<div class="progress green" style="width: 40%;"></div>
<div class="progress orange" style="width: 10%;"></div>
<div class="progress pink" style="width: 25%;"></div>
<div class="progress blue" style="width: 15%;"></div>
</div>
<p>Tiny</p>
<div class="bar_mortice mortice_tiny">
<div class="progress progress_tiny" style="width: 66%;"></div>
</div>
<p>Tiny Round</p>
<div class="bar_mortice rounded_tiny mortice_tiny">
<div class="progress rounded_tiny progress_tiny" style="width: 33%;"></div>
</div>
<div class="bar_mortice rounded_tiny mortice_tiny green_mortice">
<div class="progress rounded_tiny progress_tiny green" style="width: 45%;"></div>
</div>
<div class="bar_mortice rounded_tiny mortice_tiny orange_mortice">
<div class="progress rounded_tiny progress_tiny orange" style="width: 80%;"></div>
</div>
<div class="bar_mortice rounded_tiny mortice_tiny pink_mortice">
<div class="progress rounded_tiny progress_tiny pink" style="width: 66%;"></div>
</div>
<div class="bar_mortice rounded_tiny mortice_tiny purple_mortice">
<div class="progress rounded_tiny progress_tiny purple" style="width: 37%;"></div>
</div>
<div class="bar_mortice rounded_tiny mortice_tiny blue_mortice">
<div class="progress rounded_tiny progress_tiny blue" style="width: 70%;"></div>
</div>
<p>Tiny Combo</p>
<div class="bar_mortice mortice_tiny">
<div class="progress progress_tiny green" style="width: 30%;"></div>
<div class="progress progress_tiny orange" style="width: 20%;"></div>
<div class="progress progress_tiny pink" style="width: 20%;"></div>
<div class="progress progress_tiny blue" style="width: 15%;"></div>
</div>
</body>
</html>