-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
153 lines (130 loc) · 5.08 KB
/
grid.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EMBL Design Language</title>
<link rel="stylesheet" href="https://embl-design-language.github.io/Framework-for-Websites/css/embl-design-language-full.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body class="show-grid">
<div class="grid-container">
<div class="global-masthead">
<div class="row">
<div class="large-10 columns"> </div>
<div class="large-2 columns">
<a href="#"><img class=" padding-top-medium padding-bottom-medium" src="https://embl-design-language.github.io/Framework-for-Websites/assets/logos/EMBL-mono-black.svg" /></a>
</div>
</div>
</div>
<div class="main-content-area" id="main-content-area">
<div class="row">
<div class="large-12 columns">
<h1 class="margin-left-medium intro padding-top-large">Site name goes here</h1>
<p class="margin-left-medium lead">Subtitle and some stuff, maybe a <a href="#">link</a>.</p>
</div>
</div>
<div class="row">
<div class="large-1 columns">
<p>1 column</p>
</div>
<div class="large-2 columns">
<p>2 columns</p>
</div>
<div class="large-3 columns">
<p>3 columns</p>
</div>
<div class="large-4 columns">
<p>4 columns</p>
</div>
</div>
<div class="row">
<div class="large-5 columns">
<p>5 columns</p>
</div>
</div>
<div class="row">
<div class="large-6 columns">
<p>6 columns</p>
</div>
</div>
<div class="row">
<div class="large-7 columns">
<p>7 columns</p>
</div>
</div>
<div class="row">
<div class="large-8 columns">
<p>8 columns</p>
</div>
</div>
<div class="row">
<div class="large-9 columns">
<p>9 columns</p>
</div>
</div>
<div class="row">
<div class="large-10 columns">
<p>10 columns</p>
</div>
</div>
<div class="row">
<div class="large-11 columns">
<p>11 columns</p>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<p class="">This file is a contact sheet to see the very basics of the EMBL Design Language framework, for full guidance on using it, <a class="readmore" href="https://embl-design-language.github.io/Springboard/">head to the Springboard</a></p>
<p>Here is a readout of some basic styles:</p>
<hr/>
<h1 class="intro">A huge 'h1.intro' header.</h1>
<h1>h1. This is a very large header.</h1>
<h2>h2. This is a large header.</h2>
<h3>h3. This is a medium header.</h3>
<h4>h4. This is a moderate header.</h4>
<h5>h5. This is a small header.</h5>
<h6>h6. This is a tiny header.</h6>
<ul>
<li>List item with a much longer description or more content.</li>
<li>List item
<ul>
<li>Nested list item</li>
<li>Nested list item</li>
<li>Nested list item</li>
</ul>
</li>
<li>List item</li>
<li>List item</li>
</ul>
<ol>
<li>Cheese (essential)</li>
<ol>
<li>Normal bacon</li>
<li>Canadian bacon</li>
</ol>
</li>
<li>Mushrooms</li>
</ol>
<dl>
<dt>Time</dt>
<dd>The indefinite continued progress of existence and events in the past, present, and future regarded as a whole.</dd>
<dt>Space</dt>
<dd>A continuous area or expanse that is free, available, or unoccupied.</dd>
<dd>The dimensions of height, depth, and width within which all things exist and move.</dd>
</dl>
<blockquote>
Those people who think they know everything are a great annoyance to those of us who do.
<cite>Isaac Asimov</cite>
</blockquote>
</div>
</div>
</div>
</div>
<script src="https://embl-design-language.github.io/Framework-for-Websites/bower_components/jquery/dist/jquery.js"></script>
<script src="https://embl-design-language.github.io/Framework-for-Websites/bower_components/what-input/dist/what-input.js"></script>
<script src="https://embl-design-language.github.io/Framework-for-Websites/bower_components/foundation-sites/dist/js/foundation.js"></script>
<script src="https://embl-design-language.github.io/Framework-for-Websites/js/embl-design-language-framework.js"></script>
</body>
</html>