-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (92 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Blueprint Grid</title>
<meta name="description" content="Blueprint Grid B3Grid demo." />
<!-- Icons -->
<link rel="shortcut icon" href="source/icons/bpg48.png" type="image/x-icon" />
<link rel="icon" href="source/icons/bpg.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="source/icons/bpg100.png" />
<!-- CORE CSS -->
<link href="source/brutalist.min.css" type="text/css" rel="stylesheet" media="all"/>
<link href="source/blueprintgrid.css" type="text/css" rel="stylesheet" media="all"/>
<style>
.block-wrap .block { border: 2px solid #333; padding: 1.25em; background: #e6e6e6; }
.brick-wrap .brick { border: 2px solid #3B0B0B; background: #610B0B;}
.tiles li { border: 2px solid #6e6e6e; outline: 3px solid #e6e6e6; background: #efefef; padding: 0.5em;}
ul.none { padding: 0; text-align: left;}
ul.none li {margin: 8px 0 8px 0;}
ul.none li a:link, ul.none li a:visited, .links a {
border: 1px solid #333; border-radius: 0.5rem; -webkit-border-radius: 0.5rem; padding: 0.33rem;
}
ul.none li a:hover, .links a:hover {background: #cdcdcd;}
.links {margin-top: 1rem; }
</style>
</head>
<body class="infinitile lucida">
<div class="block-wrap bw100 center" style="margin-bottom: 2em; margin-top: 2em;">
<div class="block bw50 blueprint box-s-k b-s-k charcoal-b rounded">
<h1><i class="bi bi-grid"></i> Blueprint Grid</h1>
<h2 class="flow-text">A multi-method grid system built with Flexbox, CSS Grid, and vanilla javascript.</h2>
<strong><a href="https://github.com/pinecreativelabs/Blueprint-Grid/wiki" target="_blank" class="btn charcoal rice-t invert-h">Documentation »</a></strong>
</div>
</div>
<div class="container-960">
<div class="block-wrap center stretch">
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">B3Grid</h3>
<p>Flexbox-based grid system.</p>
<ul class="none bold">
<li><a href="b3grid.html">B3Grid Demo »</a></li>
<li><a href="panes.html">Panes Demo »</a></li>
<li><a href="nesting.html">Nesting Demo »</a></li>
<li><a href="responsive.html">Responsive Demo »</a></li>
</ul>
</div>
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">CSS Grid</h3>
<p>Layouts based on CSS grid.</p>
<ul class="none bold">
<li><a href="css-grid.html">Demo »</a></li>
</ul>
</div>
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">Print Grid</h3>
<p>Paper-friendly print grid.</p>
<ul class="none bold">
<li><a href="papers.html">Demo »</a></li>
</ul>
</div>
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">Bento Grid</h3>
<p>Dynamic layout grid system.</p>
<ul class="none bold">
<li><a href="bento-grid.html">Demo »</a></li>
</ul>
</div>
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">Chaos Grid</h3>
<p>The anti-grid grid.</p>
<ul class="none bold">
<li><a href="chaos-grid.html">Standard Demo »</a></li>
<li><a href="chaos-grid-randomize.html">Randomized Demo »</a></li>
</ul>
</div>
<div class="block bw33 sm-100 md-100 lg-50">
<h3 class="flow-text">PolyGrids</h3>
<p>Grids with multiple dimensions.</p>
<ul class="none bold">
<li><a href="polygrids.html">Demo »</a></li>
</ul>
</div>
</div>
<p class="center links"><strong>
<a href="https://www.blueprintgrid.com/" target="_blank">BlueprintGrid.com</a> | <a href="https://github.com/pinecreativelabs/Blueprint-Grid" target="_blank">Github</a>
</strong></p>
</div>
<p class="spacer"></p>
<p class="spacer"></p>
</body>
</html>