-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
105 lines (90 loc) · 3.69 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Least – TOKI WOKI.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/style.css?d" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/fr_FR/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="container">
<header class="hero-unit">
<h1>Least</h1>
<p>Least helps you move from your old-fashioned CSS files to something shiny: CSS pre-processors!</p>
<div class=share>
<!-- Facebook -->
<div class="fb-like" data-send="true" data-layout="button_count" data-width="180" data-show-faces="false" style="vertical-align: 3px"></div>
<!-- Twitter -->
<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!-- Google Plus -->
<div class="g-plusone" data-size="medium"></div>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
</header>
<div class=row>
<div class=span6>
<button class="btn btn-primary pull-right convert">Convert!</button>
<button class="btn pull-right demo">Load demo file</button>
<h2>Input</h2>
<textarea id="input" placeholder="Paste or edit your raw CSS here" class="span6"></textarea>
<div class="alert">
<strong>Warning!</strong> Known issues with <code>@media</code> queries and data URIs.
</div>
</div>
<div class=span6>
<button class="btn btn-primary pull-right select">Select all</button>
<h2>Output</h2>
<textarea id="output" placeholder="Your clean output will be here" class="span6"></textarea>
<div class=row>
<div class="control-group span2">
<label class="control-label">Output language</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="lang" value="less" checked="">LESS / Sass</label>
<label class="radio inline">
<input type="radio" name="lang" value="stylus">Stylus</label>
</div>
</div>
<div class="control-group span4">
<label class="control-label">Indent using</label>
<div class="controls">
<label class="radio inline">
<input type="radio" name="indent" value="indent2">Two spaces</label>
<label class="radio inline">
<input type="radio" name="indent" checked="" value="indent4">Four spaces</label>
<label class="radio inline">
<input type="radio" name="indent" value="indentt">Tabs</label>
</div>
</div>
</div>
</div>
</div>
<footer class=well>
A five-hour project, by <a href="../../">TOKI WOKI</a>.
<a href="http://twitter.com/tokiwoki" class="btn btn-warning pull-right btn-mini">Found a bug?</a>
</footer>
</div>
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/script.js?i"></script>
</body>
</html>