-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
96 lines (96 loc) · 2.79 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
<!doctype html>
<html lang="en">
<head>
<title>Drupal Birthday . Fun</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html,
body {
height: 100%;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
text-rendering: geometricPrecision;
}
p {
color: #424242;
position: relative;
}
.loading-text:after {
position: absolute;
content: ' ';
display: block;
width: 15px;
height: 15px;
bottom: 0;
left: 50%;
margin-right: -8px;
background-image: url("throbber.gif");
background-position: left bottom -5px;
}
.hidden:after {
background: none;
}
.github {
font-size: 8px;
}
.big {
font-size: 40px;
}
label, input {
display: block;
margin: 0 auto;
}
label {
color: #424242;
position: relative;
}
input {
padding: 5px;
color: #424242;
text-align: center;
}
.spacing {
margin-bottom: 30px;
}
.visuallyhidden {
display: none;
}
</style>
<meta name="title" content="Drupal Birthday . Fun" />
<meta name="description" content="Find your Drupal Birthday, for Fun!" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Drupal Birthday . Fun" />
<meta property="og:title" content="Drupal Birthday . Fun" />
<meta property="og:description" content="Find your Drupal Birthday, for Fun!" />
<meta property="og:url" content="https://drupalbirthday.fun/" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Drupal Birthday . Fun" />
<meta name="twitter:description" content="Find your Drupal Birthday, for Fun!" />
<meta name="twitter:url" content="https://drupalbirthday.fun/" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://drupalbirthday.fun/",
"name": "Drupal Birthday . Fun",
"potentialAction": {
"@type": "SearchAction",
"target": "https://drupalbirthday.fun/#{query}",
"query-input": "required"
}
}
</script>
</head>
<body>
<div id="root">
<form id="userNameQueryForm">
<label class="spacing big visuallyhidden" for="uname">Drupal.org User Name</label>
<input class="big username spacing" type="text" id="uname" name="username" placeholder="Drupal.org User Name">
<input class="big loading-text hidden" type="submit" value="Submit" id="submit">
</form>
</div>
<p class="github"><a href="https://github.com/mattgrill/drupal-birthday">github.com/mattgrill/drupal-birthday</a></p>
<script src="index.js"></script>
</body>
</html>