-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (87 loc) · 3.81 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
97
98
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>EG + GH</title>
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'>
<link rel='icon' href='favicon.ico' type='image/x-icon'>
<link href='https://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet'>
<style>
body {
font-family: 'Droid Sans';
color: #5F5F5F;
text-align: center;
margin-top: 50px;
}
.device-wrapper, .connect-wrapper, .inner-wrapper {
width: 100%;
display: inline-block;
margin: 0 auto;
text-align: center;
padding-left: 0px;
margin-top: 20px;
margin-bottom: 20px;
}
.outer-wrapper { margin: 0 auto; }
.inner-wrapper { display: column; margin: 0 auto; width: 30%; }
.lone-img { width: 100%; text-align: center; }
.device-children, .connect-children { display: inline-block; width: 25%; }
.app-li { text-align: left; }
.img { width: 80%; max-width: 299px; height: auto; }
.linked-img { padding: 20px; padding-top: 18px; padding-bottom: 18px; margin-bottom: -22px; }
/*.ellie-img { width: 100%; max-width: 120px; }*/
/*.ellie-img-1 { width: 100%; max-width: 191px; }*/
.ellie-img-2 { max-width: 300px; }
.mid-img { padding-bottom: 20px; }
.github-img { max-width: 260px; }
.app-img { max-width: 80px; width: 30%; height: auto; }
.bt-img { margin-left: 5%; }
.border { border: solid 2px #FFFFFF; border-radius: 10px; }
.border:hover { border: solid 2px #F95658; }
</style>
</head>
<body>
<div class='outer-wrapper'>
<div class='inner-wrapper'>
<div class='lone-img'>
<a href='https://elliegrid.com/'>
<!-- <img src='img/elliegrid-elephant.png' class='img ellie-img linked-img border'> -->
<!-- <img src='img/elliegrid-business_brown.png' class='img ellie-img-1 linked-img border'> -->
<img src='img/elliegrid-idea_icons+logo.png' class='img ellie-img-2 linked-img border'>
</a>
</div>
<div class='lone-img mid-img'>
<img src='img/arrow.png' class='img mid-img'>
</div>
<div class='lone-img'>
<a href='https://github.com/EllieGrid'>
<img src='img/github_laptop-small.png' class='img github-img linked-img border'>
</a>
</div>
</div>
<ul class='connect-wrapper'>
<li class='connect-children'>
<img src='img/cable.png' class='img'>
</li>
<li class='connect-children'>
<img src='img/wifi.png' class='img'>
</li>
</ul>
<ul class='device-wrapper'>
<li class='device-children'>
<a href='https://github.com/EllieGrid/public-docs'>
<img src='img/pillbox.png' class='img linked-img border'>
</a>
</li>
<li class='connect-children'>
<img src='img/bluetooth.png' class='img bt-img'>
</li>
<li class='device-children app-li'>
<a href='https://github.com/EllieGrid/public-docs'>
<img src='img/app.png' class='img app-img linked-img border'>
</a>
</li>
</ul>
</div>
</body>
</html>