-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (85 loc) · 1.82 KB
/
index.html
File metadata and controls
99 lines (85 loc) · 1.82 KB
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
99
<html>
<head>
<title>Struct</title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Spectral:500,700" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
html {
padding: 20px;
}
body {
font-family: 'Spectral', serif;
font-size: 28px;
color: #0F2133;
}
strong {
font-weight: bold;
}
em {
font-weight: bold;
color: #FF0076;
font-style: normal;
}
.container {
width: 100%;
}
.logo {
text-align: center;
}
.logo img {
height: 36px;
}
main {
margin: 50px auto 0;
width: 100%;
max-width: 480px;
}
aside {
margin: 0 auto;
width: 100%;
}
@media only screen and (min-width: 850px) {
main {
margin: 100px 5% 25px;
width: 40%;
max-width: 480px;
float: right;
}
aside {
margin: 50px 0 25px;
width: 50%;
float: right;
}
}
@media only screen and (min-width: 1100px) {
main {
margin: 200px 4.1666667% 25px;
width: 33.3333333%;
float: right;
}
aside {
margin: 0;
width: 58.3333338%;
float: right;
}
}
aside img {
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<aside>
<img src="assets/make_people_awesome.svg" />
</aside>
<main>
<div class="logo"><img src="assets/struct_wm.svg" /></div>
<p><strong>struct</strong> is on a mission to <em>make people awesome</em>. We aren’t currently accepting new projects but some day we’d love to help make your teams, customers, and users awesome.</p>
</main>
</div>
</body>
</html>