Skip to content

Commit 9949105

Browse files
committed
Site updated at 2013-09-12 10:45:24 UTC
0 parents  commit 9949105

File tree

21 files changed

+1993
-0
lines changed

21 files changed

+1993
-0
lines changed

.nojekyll

Whitespace-only changes.

application/index.html

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<!DOCTYPE html>
2+
<html lang='en'>
3+
<head>
4+
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
5+
<meta charset='utf-8'>
6+
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
7+
<title>Application / MVCSS</title>
8+
<meta content='MVCSS - A Sass-based CSS architecture for creating predictable and maintainable application style.' name='description'>
9+
<link href="http://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300" media="screen" rel="stylesheet" type="text/css" />
10+
<link href="../assets/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
11+
<script>
12+
var _gaq = _gaq || [];
13+
_gaq.push(['_setAccount', 'UA-32794837-1']);
14+
_gaq.push(['_trackPageview']);
15+
16+
(function() {
17+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
18+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
19+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
20+
})();
21+
</script>
22+
</head>
23+
<body class='application application_index'>
24+
<div class='l-controls'>
25+
<a class='btn--a' href='https://github.com/mvcss/mvcss'>View Code &rarr;</a>
26+
<p><a href="/changelog/">Changelog (v3.0.1)</a></p>
27+
</div>
28+
<a class='l-sidebar-toggle' href='#'>Navigation</a>
29+
<aside class='l-sidebar'>
30+
<header class='l-header'>
31+
<div class='c-logo'>
32+
<a href='/'><img width="100" height="110" alt="MVCSS" src="../assets/images/logo.svg" /></a>
33+
<b>MVCSS <span>Version 3.0.1</span></b>
34+
</div>
35+
<p class='c-tagline'>A Sass-based CSS Architecture</p>
36+
</header>
37+
<nav class='l-nav'>
38+
<ul>
39+
<li><a href="/">About</a></li>
40+
<li><a class="is-active" href="/application/">Application</a></li>
41+
<li>
42+
<a href="/core/">Core</a>
43+
<ul>
44+
<li><a href="/core/reset/">Reset</a></li>
45+
<li><a href="/core/settings/">Settings</a></li>
46+
<li><a href="/core/helpers/">Helpers</a></li>
47+
<li><a href="/core/base/">Base</a></li>
48+
<li><a href="/core/content/">Content</a></li>
49+
<li><a href="/core/layout/">Layout</a></li>
50+
</ul>
51+
</li>
52+
<li><a href="/modules/">Modules</a></li>
53+
<li>
54+
<a href="/styleguide/">Styleguide</a>
55+
<ul>
56+
<li><a href="/styleguide/basics/">Basics</a></li>
57+
<li><a href="/styleguide/sass-specific/">Sass-specific</a></li>
58+
<li><a href="/styleguide/naming/">Naming Conventions</a></li>
59+
</ul>
60+
</li>
61+
<li><a href="/library/">Library</a></li>
62+
</ul>
63+
</nav>
64+
<footer class='l-about'>
65+
<b>Crafted with care by</b>
66+
<a href="http://twitter.com/nickawalsh">Nick Walsh</a>
67+
&amp;
68+
<a href="http://twitter.com/drewbarontini">Drew Barontini</a>
69+
</footer>
70+
</aside>
71+
<main class='l-cell'>
72+
<h1>Application</h1>
73+
74+
<p>The application consists of one file, <code>application.sass</code>, and it acts as the loader file for <strong>MVCSS</strong>. The file consists of imports and the inbox.</p>
75+
76+
<h2>Imports</h2>
77+
78+
<ul>
79+
<li><a href="http://compass-style.org/">Compass</a> (optional, see below)</li>
80+
<li><a href="/core/">Core</a></li>
81+
<li><a href="/modules/">Modules</a></li>
82+
</ul>
83+
84+
<p><strong>Note</strong>: <a href="http://compass-style.org/">Compass</a> provides utilities and niceties to make your life easier. We use it, and we recommend that you give it a try.</p>
85+
86+
<h2>Inbox</h2>
87+
88+
<p>The inbox allows developers, and those not actively working on the CSS, to quickly add styles that are easily seen by the maintainer of the file. This section of the Application has worked wonders for us.</p>
89+
</main>
90+
<script>
91+
var _gauges = _gauges || [];
92+
(function() {
93+
var t = document.createElement('script');
94+
t.type = 'text/javascript';
95+
t.async = true;
96+
t.id = 'gauges-tracker';
97+
t.setAttribute('data-site-id', '4fe1bcaa613f5d1bfe000020');
98+
t.src = '//secure.gaug.es/track.js';
99+
var s = document.getElementsByTagName('script')[0];
100+
s.parentNode.insertBefore(t, s);
101+
})();
102+
</script>
103+
<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
104+
<script>
105+
(function() {
106+
107+
$(function() {
108+
return $('.l-sidebar-toggle').on('click', function(e) {
109+
e.preventDefault();
110+
$(this).toggleClass('is-active');
111+
return $('body').toggleClass('is-sidebar-toggled');
112+
});
113+
});
114+
115+
}).call(this);
116+
</script>
117+
</body>
118+
</html>

assets/images/logo.svg

Lines changed: 31 additions & 0 deletions
Loading

assets/stylesheets/application.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/stylesheets/vendor/github.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)