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 94
|
@charset "UTF-8";
@import url("http://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic&subset=latin,latin-ext");
@import url("http://fonts.googleapis.com/css?family=Source Code Pro");
body {
font-family: Lato, Arial, sans-serif;
font-feature-settings: "kern", "liga", "clig", "calt";
font-size: 1em;
line-height: 1.3em;
}
body {
width: 800px;
margin: 0 auto;
}
table.menu {
width: 700px;
margin-left: 50px;
}
/* makeinfo 5.2 */
div.header p {
margin: 0;
text-align: right;
}
div.header {
background-color: #9a98bd;
background: linear-gradient(#CDCCDE,#A9A7CD);
}
/* makeinfo 4.8 */
div.node {
background-color: #9a98bd;
background: linear-gradient(#CDCCDE,#A9A7CD);
}
div.node p {
margin: 0;
text-align: right;
}
div.node hr {
margin: 0;
}
div.footnote h3 {
display: inline;
font-size: normal;
}
/* makeinfo up to 5.2 cannot pass on unicode characters without messing them up */
a[rel="up"]:before {
content: " \2191 "; /* ↑ */
}
a[rel="prev"]:before {
content: " \2190 "; /* ← */
}
a[rel="next"]:before {
content: " \2192 "; /* → */
}
code, kbd, samp, pre {
font-size: 85%;
font-family: "Source Code Pro", Menlo, Inconsolata, monospace;
}
code, pre, samp {
background-color: rgba(0,0,0,0.04);
border-radius: 3px;
}
kbd {
display: inline-block;
padding: 3px 5px;
font-style:normal;
line-height: 0.8em;
color: #555;
vertical-align: middle;
background-color: #fcfcfc;
border: solid 1px #ccc;
border-bottom-color: #bbb;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #bbb;
}
div.background {
position: fixed;
z-index: -1;
right: 30px;
bottom: 0px;
width: 256px;
height: 256px;
opacity: 0.3;
background-image: url("haskell-mode.svg");
background-repeat: no-repeat;
background-size: 256px 256px;
}
img {
/* same as div.smallexample in default rules */
margin-left: 3.2em;
}
|