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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
\vanish{
\set{{modes}{v}}{}{
{COLOUR1}{pink}
{COLOUR2}{green}
}
}
body {
font-size: 12pt;
}
/* aephea general hooks: */
acronym.ucase, abbr.ucase {
font-size: smaller;
text-transform: uppercase;
text-decoration: none;
border-style: none;
}
.wordlist { font-size: 121%; font-style: italic; }
.namelist { font-size: 121%; }
.example { margin-left: 2em; }
.sec_title { text-align: left; margin-left: 0em; }
.sec_lev1 { font-size: 30px; }
.sec_lev2 { font-size: 25px; }
.sec_lev3 { font-size: 20px; }
.toc_and_date_TOC a.intern { visibility: hidden; }
.sec_num { display: auto; }
.quote_attribution { text-align: right; font-size: smaller; }
.smallcaps { font-size: smaller; text-transform: uppercase }
/* .smallcaps { font-variant: small-caps } */
.verbatim {
margin-top: 1em;
margin-bottom: 1em;
font-size: 10pt;
margin-left: 2em;
font-family: courier;
white-space: pre;
}
#asd_leftcolumn {
position: fixed;
text-align: left;
width: 200px;
left: 0px; top: 0px; bottom: 0px;
background-color: \COLOUR1;
border-right:6px solid \COLOUR2;
}
#asd_document_outer {
position: absolute;
top: 0px;
left: 200px;
width: 724px;
border-right:6px solid \COLOUR1;
}
#asd_document {
width: 640px;
overflow: visible;
margin: 40px auto;
}
#asd_toc {
width: 200px;
margin-top: 100px;
background-color: \COLOUR1;
position: relative;
}
/* document specific hooks: */
#asd_title
{ text-align: center;
font-size: 40px;
margin-top: 4em;
}
#asd_subtitle
{ text-align: center;
font-size: 25px;
margin-top: 1em;
}
#asd_date {
position: absolute;
right: 20px;
top: 30px;
}
#asd_version {
position: absolute;
left: 26px;
top: 30px;
}
.recipe {
width: 620px;
overflow: auto;
border: 3px solid red;
padding: 1em;
margin-top: 1em;
margin-bottom: 1em;
font-size: 10pt;
margin-left: 1ex;
font-family: courier;
white-space: pre;
}
|