-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
81 lines (71 loc) · 2.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>CSS3 Studio: box-shadow</title>
<link href='http://fonts.googleapis.com/css?family=Coustard' rel='stylesheet' type='text/css'>
<link href="css/page.css" media="all" rel="stylesheet" type="text/css"/>
<link href="css/widget.css" media="all" rel="stylesheet" type="text/css"/>
</head>
<body>
<article id="box-shadow">
<section id="sample-box-panel">
<div id="sample-box"></div>
</section>
<fieldset id="controls">
</fieldset>
<textarea id="css-output"></textarea>
<div style="clear: both;"> </div>
</article>
<script id="length-property" type="text/x-jquery-tmpl">
<div id="${name}">
<label for="${name.substring(0,4)}" title="${title}">${label}</label>
<input id="${name.substring(0,4)}" type="text">
{{if name !== 'color'}}
<select size="1" title="Units">
<option>px</option>
<option>em</option>
<option>cm</option>
<option>mm</option>
<option>in</option>
</select>
{{/if}}
</div>
</script>
<footer>
<h1>A '<code>box-shadow</code>' Tool</h1>
<section id="about">
<h2>About</h2>
<p>
I started this project mainly to make some practice with the<a href="">Backbone.js</a> framework.
As you can see from the live demo above it is a GUI for the CSS3
<a href="http://www.w3.org/TR/css3-background/#the-box-shadow">box-shadow</a> property.
</p>
</section>
<section id="lib">
<h2>Used Libraries</h2>
<ul>
<li>Backbone.js</li>
<li>Underscore</li>
<li>jQuery Tmpl</li>
<li>To Be Continued ...</li>
</ul>
</section>
<section id="credits">
<h2>Credits</h2>
<ul>
<li><a href="http://css3gen.com/box-shadow/">CSS3Gen</a> for the inspiration</li>
</ul>
</section>
<section id="source">
<h2>Source</h2>
<p><a href="http://github.com/mgiulio/backbone-box-shadow-tool">GitHub</a></p>
</section>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="http://code.jquery.com/jquery-1.6.2.min.js"><\/script>');</script>
<script src="js/underscore-1.1.6.js"></script>
<script src="js/backbone.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.js"></script>
<script src="js/script.js"></script>
</body>
</html>