forked from sarabander/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 'fork me' banner after epub is created
- Loading branch information
1 parent
c03bdec
commit 2e3b70a
Showing
3 changed files
with
75 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> | ||
<!-- Fork me banner --> | ||
</body> | ||
</html> |