-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
66 lines (58 loc) · 1.68 KB
/
login.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
<html>
<head>
<title>Hexagram Login</title>
<link href="/images/favicon.ico" rel="icon" type="image/x-icon" />
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<style type="text/css">
@font-face {
font-family: 'PT Sans Narrow';
font-style: normal;
font-weight: 400;
src: local('PT Sans Narrow'), local('PTSans-Narrow'), url(http://themes.googleusercontent.com/static/fonts/ptsansnarrow/v4/UyYrYy3ltEffJV9QueSi4Z4t0mJKPaLVqklzZuc32b4.woff) format('woff');
}
body {
background: url('images/honey_im_subtle_@2X.png');
margin: 0;
}
.container {
height: 100%;
width: 100%;
color: whitesmoke;
font-family: 'PT Sans Narrow';
text-align: center;
background-color: rgba(0,0,0,0.8);
}
p {
margin: 0;
}
a {
color: whitesmoke;
}
h1 {
font-size: 9em;
margin: 0 0 21px 0;
text-shadow: #684F3F 2px 2px;
}
.insta {
margin-left: 8px;
margin-right: 4px;
}
.welcome {
position: absolute;
top: 50%;
left: 50%;
margin-left: -298.5px;
margin-top: -143.5px;
}
</style>
</head>
<body>
<div class="container">
<div class="welcome">
<h1>Hexagr<i class="icon-instagram insta"></i>m</h1>
<a class="login-button" href="/auth/instagram"><img src="images/Instagram_normal.png"></a>
</div>
<div class="note"><p>For best results, use the Chrome browser. Also tested in Firefox. Mobile optimizations in progress</p><p>To see more, check me out on <a href="http://github.com/g-palmer/hexagram" target="_blank">Github</a></p></div>
</div>
</body>
</html>