forked from royjulien/STCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (127 loc) · 3.76 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta name="viewport" content="initial-scale=1,maximum-scale=.5,user-scalable=no">
<title>STCSS - Style The Cascading Style Sheets</title>
<link rel='stylesheet' href='css/stcss.min.css' />
<link rel='stylesheet' href='css/codemirror.css' />
<link rel='apple-touch-icon-precomposed' sizes='64x64' href='stcss-icon-apple.png'>
<link rel='shortcut icon' href='favicon.ico'>
<script src='js/vendor/modernizr.min.js'></script>
</head>
<body>
<div id='wrapper'>
<header>
<h1>STCSS <span>v1.5 Beta</span></h1>
<p>Creates your CSS instantly and indents it according to your DOM.</p>
</header>
<nav> <a href="https://github.com/royjulien/STCSS"><img src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a> </nav>
<section id='html'>
<h2>HTML</h2>
<textarea id='html-box'>
<!--
* ______ ______ ______ ______ ______
* /\ ___\ /\__ _\ /\ ___\ /\ ___\ /\ ___\
* \ \___ \ \/_/\ \/ \ \ \____ \ \___ \ \ \___ \
* \/\_____\ \ \_\ \ \_____\ \/\_____\ \/\_____\
* \/_____/ \/_/ \/_____/ \/_____/ \/_____/
*
* Developed by Julien Roy - royjulien.com
* Start Typing or paste your Inner body HTML, that's it =D
-->
<div id='container'>
<header>
<div id='logo'>STCSS</div>
<div id='logo'>STCSS</div> <!-- Duplicate, np I'll tell you -->
<nav id='main-nav'>
<ul>
<li class='active'>Home</li>
<li class='passive'>About</li>
<li class='passive'>Contact</li>
</ul>
</nav>
</header>
<section id='content'>
<aside id='sidebar'>
<nav id='sec-nav'>
<ul>
<li class='active'>Home</li>
<li class='passive'>About</li>
<li class='passive'>Contact</li>
</ul>
</nav>
</aside>
<article class='article-live'>
<h3>Header</h3>
<p>This is the content of the article.</p>
</article>
<article class='article-live'>
<h3>Header</h3>
<p>This is the content of the article.</p>
</article>
</section>
<footer>
<p>STCSS 2013</p>
</footer>
</div>
</textarea>
</section>
<section id='css'>
<h2>CSS</h2>
<pre><code></code></pre>
</section>
</div>
<section id='generate'>
<div id='wrapper'>
<header>
<div id='logo'>STCSS</div>
<div id='logo'>STCSS</div>
<nav id='main-nav'>
<ul>
<li class='active'>Home</li>
<li class='passive'>About</li>
<li class='passive'>Contact</li>
</ul>
</nav>
</header>
<section id='content'>
<aside id='sidebar'>
<nav id='sec-nav'>
<ul>
<li class='active'>Home</li>
<li class='passive'>About</li>
<li class='passive'>Contact</li>
</ul>
</nav>
</aside>
<article class='article-live'>
<h3>Header</h3>
<p>This is the content of the article.</p>
</article>
<article class='article-live'>
<h3>Header</h3>
<p>This is the content of the article.</p>
</article>
</section>
<footer>
<p>STCSS 2013</p>
</footer>
</div>
</section>
<!-- JS -->
<script src='js/vendor/pace.min.js'></script>
<script src='js/vendor/jquery.min.js'></script>
<script src='js/vendor/codemirror.min.js'></script>
<script src="js/vendor/xml.js"></script>
<script src='js/stcss.min.js'></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46141367-1', 'royjulien.com');
ga('send', 'pageview');
</script>
</body>
</html>