-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·106 lines (89 loc) · 2.07 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
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="AUTHOR" content="Rami McCarthy">
<meta name="KEYWORDS" content="hackathon">
<meta name="DESCRIPTION" content="Here is where you put a short sentence or two describing this page and it's goals">
<link href="custom.css" rel="stylesheet">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<title>metric-me</title>
</head>
<body>
<div id="header">
<h1>metric-me</h1>
</div>
<!-- <div id="section">
<table class="pure-table pure-table-horizontal" align="center">
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
<td>cell4</td>
</tr>
</table>
</div> -->
<div id="section">
<form class="pure-form pure-form-stacked" action="game" method="get">
<input type="text" name="name"/>
<input type="submit" value="Twitter Username"/>
</form>
</div>
<!-- <div id="section2">
<button type="button">Run it!</button>
</div> -->
</body>
<style>
#header {
height: 40px;
width: 80%;
position: relative;
left: 50%;
transform: translateX(-50%);
background-color: #24244E;
border-radius: 25px;
text-align: center;
color: #9696AC;
}
#section {
top: 50px;
position: relative;
left: 50%;
transform: translateX(-50%);
text-align: center;
}
#section2 {
top: 100px;
position: relative;
left: 50%;
transform: translateX(-50%);
text-align: center;
}
body {
background-color: #515177;
}
table {
width: 70%;
height: 40%;
text-align: center;
}
button {
-webkit-border-radius: 20;
-moz-border-radius: 20;
border-radius: 20px;
font-family: Arial;
color: #fff;
font-size: 34px;
background: #9FA8A3;
padding: 10px 40px 10px 40px;
text-decoration: none;
}
button:hover {
background: #3cb0fd;
text-decoration: none;
}
form {
display: inline-block;
text-align: center;
}
</style>