-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
74 lines (61 loc) · 2.65 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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Post Layout testing</title>
<link rel="stylesheet" type="text/css" href="css/font/National/National-Thin.css">
<link rel="stylesheet" type="text/css" href="css/font/National/National-Light.css">
<link rel="stylesheet" type="text/css" href="css/font/National/National-Medium.css">
<link rel="stylesheet" type="text/css" href="css/font/Newzald/fonts.css">
<link rel="stylesheet" type="text/css" href="css/font/Icons/Icons.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/login.css">
<script src="https://rawgit.com/gss/document/ranges/dist/gss.document.parser.js"></script>
<script type="text/javascript">
window.engine = new GSS(document);
GSS.Document.prototype.Output.prototype.Unit.define({
md: function(value, engine, operation, continuation, scope) {
return value * engine.watch(null, 'md', operation, continuation, scope);
},
g: function(value, engine, operation, continuation, scope) {
return value * engine.watch(null, 'g', operation, continuation, scope);
}
})
GSS.Document.prototype.Input.prototype.Unit.define({
md: function(value) {
return ['*', ['get', 'md'], value];
},
g: function(value) {
return ['*', ['get', 'g'], value];
}
})
</script>
<!-- <link rel="stylesheet" type="text/gss" href="gss/layout.gss"></link> -->
<!-- <link rel="stylesheet" type="text/gss" href="gss/variables.gss"></link> -->
<link rel="stylesheet" type="text/gss" href="gss/login.gss"></link>
</head>
<body>
<div class="logo"><img src="images/g-logo-gold.svg" id="g-logo" alt=""></div>
<div class="sign-in">Sign In</div>
<button type="button" class="button twitter">
<span class="button-text">Twitter</span>
<i class="fa fa-twitter fa-lg icon"></i>
</button>
<button type="button" class="button github">
<span class="button-text">Github</span>
<i class="fa fa-github fa-lg icon"></i>
</button>
<button type="button" class="button google">
<span class="button-text">Google</span>
<i class="fa fa-google fa-lg icon"></i>
</button>
<button type="button" class="button facebook">
<span class="button-text">Facebook</span>
<i class="fa fa-facebook fa-lg icon"></i>
</button>
<button type="button" class="button email">
<span class="button-text">Email</span>
<i class="fa fa-envelope-o fa-lg icon"></i>
</button>
</body>
</html>