-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (135 loc) · 3.16 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!doctype html>
<html lang="en-gb" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:300,500">
<style>
html,
body {
margin: 0;
padding: 0;
}
html {
font-size: 16px;
}
body {
color: #1f1f20;
background-color: #fff;
font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
text-align: center;
line-height: 1.5;
}
a {
color: #d10076;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
header {
padding: 6% 1rem 3%;
color: #fff;
background-color: #5832ab;
}
h1 {
margin: 0;
font-family: Montserrat, sans-serif;
font-weight: 300;
text-transform: lowercase;
line-height: 1.25;
}
h1 strong {
font-weight: 500;
}
main {
padding: 1rem;
}
.screenreader {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
overflow: hidden;
clip: rect(0 0 0 0);
}
.content,
.form {
max-width: 30em;
margin-right: auto;
margin-left: auto;
}
.form {
display: flex;
flex-direction: row;
margin-top: 3rem;
margin-bottom: 3rem;
}
.input,
.button {
flex-shrink: 1;
flex-grow: 1;
display: block;
width: 100%;
padding: .75rem 1.25rem;
border: 1px solid #c9c9d0;
border-radius: 0;
color: inherit;
background: none;
background-color: #fff;
font-size: 1rem;
line-height: 1.5;
}
.input {
flex-basis: 80%;
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
.button {
flex-basis: 20%;
border-left-width: 0;
text-decoration: none;
text-transform: uppercase;
letter-spacing: .1em;
cursor: pointer;
}
.button:hover,
.button:focus {
border-color: #d10076;
color: #fff;
background-color: #d10076;
}
</style>
<title>Severn Bronies meet updates - email alerts for upcoming events</title>
</head>
<body>
<header>
<h1>
<strong>Severn Bronies</strong>
meet updates
</h1>
</header>
<main>
<div class="content">
<p>Life is hard. Attending Severn Bronies meets shouldn’t be.</p>
<p>Get a monthly email with the dates and details of all of our upcoming events, right to your inbox.</p>
</div>
<form class="form" action="https://severnbronies.us17.list-manage.com/subscribe/post?u=c8d8b4a300a10d369b7acfbe5&id=680dc9c902" method="post" target="_blank">
<label class="screenreader" for="mce-EMAIL">Email Address</label>
<input class="input" type="email" name="EMAIL" id="mce-EMAIL" placeholder="Email address" autocomplete="email" required>
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input type="text" name="b_c8d8b4a300a10d369b7acfbe5_680dc9c902" tabindex="-1" value="">
</div>
<button class="button" type="submit">Subscribe</button>
</form>
<div class="content">
<p><small>No spam. No marketing. Just meets. Promise.<br>Powered by MailChimp.</small></p>
</div>
</main>
</body>
</html>