forked from sarabander/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xhtml
66 lines (61 loc) · 1.89 KB
/
index.xhtml
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xml:lang="en" lang="en">
<head>
<title>Structure and Interpretation of Computer Programs, 2e</title>
<meta name="description" content="Structure and Interpretation of Computer Programs, 2e"/>
<meta name="keywords" content="Structure and Interpretation of Computer Programs, 2e"/>
<meta name="Generator" content="texi2any"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta charset="utf-8"/>
<link href="html/css/style.css" rel="stylesheet"/>
<style type="text/css">
html {
height: 100%;
}
/* This is taken from:
http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/
http://coding.smashingmagazine.com/2013/05/22/centering-elements-with-flexbox/
*/
body {
background-color: #f0f0f0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
ebkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
margin: 0;
height: 100%;
width: 100%
}
section {
max-width: 94%;
}
@media (max-width: 480px) {
section {
max-width: 97%;
}
}
</style>
</head>
<body>
<section>
<a class="cover" href="html/index.xhtml">
<figure>
<object data="html/fig/coverpage.std.svg" type="image/svg+xml">SVG</object>
</figure>
</a>
</section>
<a href="https://github.com/sarabander/sicp"><img style="position: absolute; top: 0; right: 0; border: 0; width: 149px; height: 149px; z-index: 10; opacity: 0.5;" src="http://aral.github.com/fork-me-on-github-retina-ribbons/[email protected]" alt="Fork me on GitHub" /></a>
</body>
</html>