This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
65 lines (57 loc) · 1.48 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ouroboros Sass/CSS Spinner</title>
<meta charset="utf-8" />
<link media="screen" type="text/css" href="stylesheets/example.css" rel="stylesheet" />
<!--[if IE]><link media="screen" type="text/css" href="stylesheets/spinner-old-ie.css" rel="stylesheet" /><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 50px;
font: 13px/17px 'Helvetica', sans;
}
h1 {
font-size: 26px;
line-height: 1.2;
}
p {
margin: 50px 0 10px;
}
</style>
</head>
<body>
<h1>Ouroboros Sass/CSS Spinner Examples</h1>
<p>Default settings.</p>
<div class="ui-spinner">
<span class="side side-left">
<span class="fill"></span>
</span>
<span class="side side-right">
<span class="fill"></span>
</span>
</div>
<p>Default settings plus the donut hole.</p>
<div class="example-hole">
<div class="ui-spinner">
<span class="side side-left">
<span class="fill"></span>
</span>
<span class="side side-right">
<span class="fill"></span>
</span>
</div>
</div>
<p>Large spinner, different colors, spinning more slowly.</p>
<div class="example-large">
<div class="ui-spinner">
<span class="side side-left">
<span class="fill"></span>
</span>
<span class="side side-right">
<span class="fill"></span>
</span>
</div>
</div>
</body>
</html>