forked from dazzyweb/cute-grids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (75 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cutegrids</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/cutegrids.css">
<!-- For IE8 support include the following Respond.js for support of media queiries and also download and include the REM pollyfill from https://github.com/chuckcarpenter/REM-unit-polyfill for REM support -->
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.7.1/modernizr.min.js"></script>
<![endif]-->
<style>
h1 {
text-align: center;
}
.box {
text-align: center;
font: 15px "Helvetica Neue";
background:#5F9BD1;
color: #fff;
padding: 15px 0;
}
</style>
</head>
<body>
<div class="row">
<div class="cute-12-tablet">
<h1>Cute Grids</h1>
</div>
</div>
<div class="row">
<div class="cute-12-tablet">
<div class="box">
cute-12-tablet
</div>
</div>
</div>
<div class="row">
<div class="cute-6-tablet">
<div class="box">
<p>cute-6-tablet</p>
</div>
</div>
<div class="cute-6-tablet">
<div class="box">
<p>cute-6-tablet</p>
</div>
</div>
</div>
<div class="row">
<div class="cute-3-tablet">
<div class="box">
<p>cute-4-tablet</p>
</div>
</div>
<div class="cute-3-tablet">
<div class="box">
<p>cute-4-tablet</p>
</div>
</div>
<div class="cute-3-tablet">
<div class="box">
<p>cute-4-tablet</p>
</div>
</div>
<div class="cute-3-tablet">
<div class="box">
<p>cute-4-tablet</p>
</div>
</div>
</div>
</body>
</html>