-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (49 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Grid Utility</title>
<link rel="stylesheet" href="css-grid-utility.css">
<style>
html {
text-align: center;
background-color: #130F30;
color: #fff;
}
a {
color: pink;
}
html,
body {
margin: 0;
padding: 0;
}
h1 {
padding: 50px;
}
.grids {
margin: 50px;
}
.grids > * {
background-color: #79C8D9;
color: black;
padding: 100px;
border-radius: 12px;
}
</style>
</head>
<body>
<h1>CSS Grid Utility by <a href="https://stackrole.com">Stackrole</a></h1>
<div class="grids col-1 sm-2 lg-3">
<div>Content</div>
<div>Content</div>
<div>Content</div>
<div>Content</div>
<div>Content</div>
<div>Content</div>
</div>
<p><a href="https://github.com/stackrole/css-grid-utility">Github</a></p>
</body>
</html>