-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (102 loc) · 3.79 KB
/
index.html
File metadata and controls
113 lines (102 loc) · 3.79 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
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<link href="css/editor.css" media="all" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css" type="text/css" />
</head>
<body>
<h1><a class="js_action" href="#intro">CSS painter</a></h1>
<div id="intro" class="nodisplay">
<h2>Welcome to CSSPainter.</h2>
<p>It has an ambitious goal of bringing web creation stuff back to the web. Here's our promise:</p>
<ul>
<li>All CSS goodness done visually</li>
<li>Save your CSS sprites and share with others</li>
<li>Maximum compatibility.</li>
</ul>
<p>Why don't you have a look at some examples we prepared?</p>
<p>Stay tuned and <a href="http://twitter.com/csspainter">follow us on twitter</a></p>
<p>This is very fresh and we will get so much better!</p>
</div>
<div id="canvas">
<div class="editable selected">
<span></span>
</div>
</div>
<div id="editor">
<div class="palette box-shadow">
<div class="hd">
<h2 class="label">box-shadow</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
<button class="del">remove</button>
<button class="add">add</button>
</div>
<div class="bd">
</div>
</div>
<div class="palette text">
<div class="hd">
<h2 class="label">text</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
</div>
<div class="bd">
</div>
</div>
<div class="palette text-shadow">
<div class="hd">
<h2 class="label">text-shadow</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
<button class="del">remove</button>
<button class="add">add</button>
</div>
<div class="bd">
</div>
</div>
<div class="palette border-radius">
<div class="hd">
<h2 class="label">border-radius</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
</div>
<div class="bd">
</div>
</div>
<div class="palette size">
<div class="hd">
<h2 class="label">size</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
</div>
<div class="bd">
</div>
</div>
<div class="palette position">
<div class="hd">
<h2 class="label">position</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
</div>
<div class="bd">
</div>
</div>
<div class="palette transform">
<div class="hd">
<h2 class="label">transform</h2>
<label><input type="checkbox" name="toggle_enable" class="toggle_enable" checked="checked"> enabled</label>
</div>
<div class="bd">
</div>
</div>
</div>
<div id="css">
</div>
<div id="ready">
<ul class="examples">
<li><a href="#pink_ball">Pink ball</a></li>
<li><a href="#purple_and_blue">Purple and blue</a></li>
<li><a href="#canvas">Canvas</a></li>
</ul>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.js"></script>
<script src="js/jscolor/jscolor.js" type="text/javascript"></script>
<script src="js/editor.js" type="text/javascript"></script>
</body>
</html>