-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (99 loc) · 2.36 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>EssenceAPI</title>
<script type="text/javascript" src="http://use.typekit.net/jvs5laz.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" href="style/normalize.css"/>
<style>
html, body {
width: 100%;
height: 100%;
}
html {
background-color: rgb(40, 160, 235);
font-family: "Minion Pro", serif;
color: #fff;
}
a {
color: #fff;
}
body {
margin: 0 auto;
position: relative;
max-width: 63em;
}
@media (min-width: 55em) {
body { background: url(images/sketch-clipped.svg) top right no-repeat; }
}
header, footer, .mission {
position: absolute;
left: 0;
padding: 3em;
padding-left: 3.5em;
}
header {
top: 0;
}
.mission {
top: 8em;
}
@media (min-width: 30em) {
.mission { width: 27em; }
}
footer {
bottom: 0;
}
h1, h2 {
font-family: "Nimbus Sans Cond", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
}
h2 {
font-size: 4.5em;
line-height: 0.9em;
margin-bottom: 0.3em;
}
p, ul {
font-size: 1.15em;
margin: 0;
padding: 0;
line-height: 1.4em;
}
footer p {
opacity: 0.6;
}
</style>
</head>
<body>
<header>
<h1>EssenceAPI</h1>
</header>
<section class="mission">
<h2>3rd-party data, simple and safe</h2>
<p>This project aims to demonstrate the possibilities of:</p>
<ul>
<li>turning the web browser into a hub for 3rd party user data</li>
<li>
providing a simpler, more effective default privacy and security model
for applications integrating 3rd party user data,
with powerful data controls for advanced users and enterprises
</li>
<li>
drastically simplifying the developer experience for integrating
3rd party APIs into web applications
</li>
<li>influencing web API ecosystems to take on user-centric values</li>
</ul>
</section>
<footer>
<p>
Rabble roused by
<a href="https://twitter.com/CaptainCalliope">@CaptainCalliope</a> and
<a href="https://twitter.com/hellojwilde">@hellojwilde</a>.
</p>
</footer>
</body>
</html>