-
Notifications
You must be signed in to change notification settings - Fork 9
/
index_toxme.htm
132 lines (127 loc) · 2.37 KB
/
index_toxme.htm
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tox ID Service</title>
<style>
body {
background-color:#5e7c88;
-webkit-font-smoothing:antialiased;
font-family:Lato;
margin:0;
}
.header_nav {
text-align:left;
padding:15px;
background-color:#ecf0f1;
}
.header_nav > .icon {
height:45px;
display:block;
}
.main_content {
margin:0 auto;
text-align:center;
color:white;
}
.main_content a {
font-weight:bold;
text-decoration:none;
color:white;
}
.main_content a:hover {
border-bottom:1px rgba(255, 255, 255, 0.90) dashed;
}
.chunk {
padding:20px;
}
.chunk.hello {
}
.chunk.dark {
background-color:#24221f;
}
.tagline {
font-size:40px;
margin:0;
color:white;
}
.chunk.dark .tagline {
color:#feb41c;
}
.de-emphasize {
color: rgb(230, 230, 230)
}
.addself_form {
max-width:500px;
font-size:0;
margin:0 auto;
}
.addself_form .formbit {
margin-bottom:10px;
}
.addself_form label {
font-size:16px;
margin-left:5px;
}
.addself_form input,
.addself_form label.left {
-webkit-font-smoothing:antialiased;
font-size:20px;
font-family:"Helvetica Neue", sans-serif;
border:none;
box-sizing:border-box;
outline:none;
margin:0;
padding:10px 25px;
display:inline-block;
}
.addself_form label.left {
border-radius:9001px 0 0 9001px;
background-color:#feb41c;
color:black;
width:110px;
}
.addself_form input {
border-radius:0 9001px 9001px 0;
}
.addself_form .submit {
border-radius:9001px 9001px;
background-color:#feb41c;
font-weight:bold;
}
.footer {
padding:10px;
}
</style>
</head>
<body>
<header class="header_nav">
<a class="icon" href="/" title="Tox"></a>
</header>
<article class="main_content">
<div class="chunk hello dark">
<img style="border-style:none" src="logo.png"/></a>
<form class="addself_form" action="/">
<div class="formbit">
<label class="left" for="name">Name</label>
<input name="name" id="name" type="text" placeholder="Tox User">
</div>
<div class="formbit">
<label class="left" for="tox_id">Tox ID</label>
<input name="id" id="tox_id" type="text" placeholder="ABCDEF00...">
</div>
<div class="formbit">
<input type="submit" class="submit" value="Publish!">
</div>
</form>
<div style="height:40px">*</div>
</div>
<div id="footer" class="footer">
<p>
<small class="de-emphasize">Tox id shortening service.</small>
<small class="de-emphasize"><a href="https://github.com/notsecure/tox-dns">code.</a></small>
</p>
</div>
</article>
</body>
</html>