-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (80 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JSOxConf</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style media="screen">
body {
font-family: "Lucida Console", "Andale Mono", monospace;
}
h1, h2{
text-align: center;
font-size: 10vmin;
font-weight: 800;
line-height: 1.5em;
text-transform: uppercase;
}
h1 {
letter-spacing: .55em;
margin-left: .55em;
}
h2 {
letter-spacing: inherit;
font-size: 4vmin;
}
hr {
background: aquamarine;
height:1px;
border:none;
transform: rotate(-1.5deg);
}
hr.r {
transform: rotate(1.5deg);
}
p {
margin:2em auto;
max-width: 30rem;
}
.lead {
font-size: 120%;
}
a {
color:#000;
font-weight: 800;
text-decoration:none;
border-bottom: 1px solid aquamarine
}
a:hover {
border-color: #000
}
h1 span {
transition: all .2s;
display: inline-block;
}
</style>
</head>
<body>
<h1 id="h">JSOx<br />Conf</h1>
<h2>Early 2017</h2>
<hr />
<p class="lead">
A day-long, community-focussed event in Oxford for <strong>everyone</strong> who is excited about JavaScript.
</p>
<!-- todo: part of "announce" milestone
<p>
To be notified of speakers, tickets & more:
</p>
<p>
<a href="#">Enter your email address</a>
</p>
<p>
To propose a talk or demo:
</p>
<p>
<a href="#">Fill out this form</a>
</p>
-->
<script async type="text/javascript" src="logo.dist.js" ></script>
</body>
</html>