-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
93 lines (83 loc) · 2.31 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SatoshiLabs Documentation</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<style type='text/css'>
body {
font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
font-weight: normal;
color: #404040;
}
h1, h2 {
font-family: "Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;
font-weight: 700;
text-align: center;
clear: both;
}
h2 {
margin-bottom: -4px;
}
ul {
padding: 0px;
margin: 0px;
}
a {
text-decoration: none;
}
li {
float: left;
display: block;
text-align: center;
background: #2980b9;
color: #fcfcfc;
text-decoration: none;
font-weight: bold;
border-radius: 1em;
margin: 16px;
width: 192px;
height: 224px;
}
li i {
margin-top: 48px;
margin-bottom: 24px;
}
li:hover {
background: #80b929;
}
li:hover i {
font-size: 6em;
margin-top: 40px;
margin-bottom: 16px;
}
footer {
clear: both;
color: #999;
padding: 2em;
text-align: center;
}
div {
float: left;
}
</style>
</head>
<body>
<div>
<h1>SatoshiLabs Documentation</h1>
<h2>TREZOR</h2>
<ul>
<a href="trezor-faq/index.html"><li><i class="fa fa-question-circle fa-5x"></i><br><span>TREZOR Frequently Asked Questions</span></li></a>
<a href="trezor-user/index.html"><li><i class="fa fa-user fa-5x"></i><br><span>TREZOR<br/>User Manual</span></li></a>
<a href="trezor-tech/index.html"><li><i class="fa fa-cogs fa-5x"></i><br><span>TREZOR<br/>Technical Manual</span></li></a>
<a href="trezor-devel/index.html"><li><i class="fa fa-magic fa-5x"></i><br><span>TREZOR<br/>Developer Manual</span></li></a>
</ul>
<h2>Misc</h2>
<ul>
<a href="slips/index.html"><li><i class="fa fa-lightbulb-o fa-5x"></i><br><span>SatoshiLabs<br/>Improvement Proposals</span></li></a>
</ul>
<footer>© Copyright 2014, SatoshiLabs.</footer>
</div>
</body>
</html>