-
Notifications
You must be signed in to change notification settings - Fork 60
/
index.html
67 lines (66 loc) · 2.78 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Layer Styles</title>
<link rel="icon" type="image/png" href="favicon.png" />
<script type="text/javascript" src="js/modernizr-1.7.min.js"></script>
<link rel="stylesheet" href="css/index.css" type="text/css" />
</head>
<body>
<div id="arche">
<header>
<div id="logo">LS</div>
<div id="headline">
<h1>LayerStyles</h1>
<h3 class="tagline">just like your favorite graphics editor</h3>
<h3 class="tagline">but in your browser. And it creates CSS.</h3>
</div>
</header>
<section id="ready">
<a href="builder.html"><img class="hero" src="img/hero.png" width="556" height="393" alt="Layerstyles main interface" /></a>
</section>
<section id="not-ready">
<img class="hero" src="img/hero.png" width="556" height="393" alt="Layerstyles main interface" />
<div class="holder">
<div class="upper">
<h2>Unfortunately your browser doesn't support the following requirements:</h2>
<div class="features">
<span class="feature-js">Javascript enabled</span>
<span class="feature-json">Native JSON</span>
<span class="feature-cssgradients">CSS Background Gradients</span>
<span class="feature-borderradius">Border Radius</span>
<span class="feature-canvas">HTML5 Canvas</span>
<span class="feature-flexbox">HTML5 Flexbox</span>
<span class="feature-rgba">RGB Alpha-Channel</span>
<span class="feature-boxshadow">Box Shadows</span>
</div>
</div>
<div class="bottom">
<p>
Please update your browser.
</p>
</div>
</div>
</section>
<footer>
<p>LayerStyles is <em>Open Source</em> and on <a href="https://github.com/mrflix/LayerStyles">Github</a></p>
<p>made by <a href="http://www.felixniklas.de">Felix Niklas</a> © 2011 <em>follow me on mastodon:</em> <a href="https://mastodon.social/@mrflix">@mrflix</a>.</p>
</footer>
</div><!-- /arche -->
<script type="text/javascript" src="js/jquery-1.6.min.js"></script>
<script type="text/javascript" src="js/ui.js"></script>
<script type="text/javascript" src="js/zeroclipboard/ZeroClipboard.js"></script>
<script type="text/javascript" src="js/localization.js"></script>
<script type="text/javascript" src="js/color.js"></script>
<script type="text/javascript" src="js/numbers.js"></script>
<script type="text/javascript" src="js/tools.js"></script>
<script type="text/javascript" src="js/css.js"></script>
<script type="text/javascript" src="js/style.js"></script>
<script type="text/javascript" src="js/colorpicker.js"></script>
<script type="text/javascript" src="js/gradienteditor.js"></script>
<script type="text/javascript" src="js/codebox.js"></script>
<script type="text/javascript" src="js/universe.js"></script>
<script type="text/javascript" src="js/styleStore.js"></script>
</body>
</html>