-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (66 loc) · 2.01 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
<!DOCTYPE html>
<head>
<!-- The Basics: The title and description appear in your browser window/tab and in search engine results. -->
<title>SI Web Design: Materials</title>
<meta name="description" content="Online materials for the Startup Institute Web Design Fundamentals course">
<!-- Every responsive website must have this! Forces pixel-dense devices to display content correctly. -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Lato:400,100,300,300italic,400italic,900,700" rel="stylesheet" type="text/css">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- My Custom CSS-->
<link rel="stylesheet" type="text/css" href="responsive-grid/tutorial/stylesheet.css">
<style>
body {
text-align: center;
color: white;
}
a {
color: white;
text-decoration: none;
display: block;
}
.v-align {
display: table;
height: 100%;
width: 33.333%;
float: left;
height: 100vh
}
.v-align > * {
display: table-cell;
vertical-align: middle
}
.v-align:not(:last-of-type) {
border-right: 1px solid white;
}
.example:hover {
background-color: #3D6790;
cursor: pointer;
}
.example:hover a {
text-decoration: none;
}
</style>
</head>
<body>
<div class="content ">
<div class="v-align example">
<a href="example-project">
Example Project
</a>
</div>
<div class="v-align example">
<a href="responsive-grid">
Responsive Grid Tutorial
</a>
</div>
<div class="v-align example">
<a href="student-projects">
Student Project Showcase
</a>
</div>
</div>
</body>
</html>