This repository has been archived by the owner on Sep 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
128 lines (118 loc) · 3.6 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>YSDN 2016 Style Guide</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/screen.css">
<!-- <link rel="icon" href="/favicon.ico"> -->
</head>
<body class="s-body grid">
<div class="s-layout-sidebar s-sidebar">
<header>
<h1>YSDN 2016</h1>
<h2>Style & Interface</h2>
</header>
<nav>
<p class="label">Typography</p>
<a href="#s-typeface" class="s-nav-item">Typeface</a>
<p class="label">Grid</p>
<a href="#s-fonts" class="s-nav-item">Units</a>
<a href="#s-fonts" class="s-nav-item">Wrapping</a>
<p class="label">Color</p>
<a href="#s-bg-color" class="s-nav-item">Background Colors</a>
<a href="#s-border-color" class="s-nav-item">Border Colors</a>
<p class="label">Modules</p>
<a href="#s-bg-color" class="s-nav-item">Hovercard</a>
<a href="#s-fonts" class="s-nav-item s-subnav-item">Student</a>
<a href="#s-fonts" class="s-nav-item s-subnav-item">Project</a>
<a href="#s-bg-color" class="s-nav-item">Case Study</a>
</nav>
</div>
<div class="s-layout-content s-content g-container">
<section id="s-intro" class="row">
<header>
<h2>Intro</h2>
</header>
<p class="col-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestiae nam, unde, vero omnis odio corporis dignissimos eius facere id ullam!</p>
</section>
<div class="s-divider">Typeography</div>
<section id="s-typeface">
<header>
<h2>Typeface</h2>
</header>
<div class="type type-h1 group">
<div class="row">
<h1 class="col-12 s-sample">The quick brown fox jumps over the lazy dog.</h1>
</div>
<div class="row">
<div class="col col-2">
<code>
<h1>
</code>
</div>
<div class="col col-3">
<code>
family: <span>Helvetica Neue</span>; <br/>
weight: <span>400</span>; <br/>
size: <span>1.4em</span>;
</code>
</div>
<div class="col col-3">
<code>
color: #something;
</code>
</div>
</div>
</div>
<div class="type type-h2 group">
<div class="row">
<h2 class="col-12 s-sample">The quick brown fox jumps over the lazy dog.</h2>
</div>
<div class="row">
<div class="col col-2">
<code>
<h2>
</code>
</div>
<div class="col col-3">
<code>
family: <span>Helvetica Neue</span>; <br/>
weight: <span>400</span>; <br/>
size: <span>1.1em</span>;
</code>
</div>
<div class="col col-3">
<code>
color: #something;
</code>
</div>
</div>
</div>
</section>
<section id="s-grid">
<header>
<h2>Grid</h2>
</header>
<p>The site uses a basic 12 column grid system. Grid css is located in scss/partials/_grid.scss</p>
<h3>Getting started</h3>
<p>The grid is activated by adding the .grid class on the body tag. As simple as that.</p>
<h3>Rows</h3>
<h3>Columns</h3>
<div class="row">
<div class="col col-12 s-col-sample"></div>
</div>
<div class="row">
<div class="col col-4 s-col-sample"></div>
<div class="col col-4 s-col-sample"></div>
<div class="col col-4 s-col-sample"></div>
</div>
</section>
<section id="s-bg-color"></section>
<section id="s-border-color"></section>
</div>
<!-- <script src="http://code.jquery.com/jquery-latest.min.js"></script> -->
<script src="js/scripts.js"></script>
</body>
</html>