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
|
html {
color: black;
background-color: white;
margin-left: 4%;
margin-right: 2%;
}
h1 {
text-align: center;
font-family: Helvetica, Arial, sans-serif
}
h2 {
color: #515e4b;
font-family: Helvetica, Arial, sans-serif
}
h3 {
font-family: Helvetica, Arial, sans-serif;
}
.lisp {
background: #aaaaaa;
border:solid #aaaaaa 0.1px;
white-space:pre;
font-family: sans-serif;
}
.example {
background: #cccccc;
border:solid #cccccc 0.1px;
white-space:pre;
}
.code {
background: #faf0e6;
border:solid #faf0e6 1px;
white-space:pre-line;
}
.technical {
background: #dddddd;
border: solid black 1px;
padding-left: 1em;
padding-right: 1em;
padding-top: 1ex;
padding-bottom: 1ex;
font-size: smaller;
font-stretch: semi-condensed;
margin-left: 10%;
}
.credits {
background: #eeeeee;
font-stretch: condensed;
font-size: 0.8em;
font-family: Helvetica, Arial, sans-serif;
text-align: right;
}
.function-name {
color: rgb(25%,0%,0%);
}
.variable {
color: rgb(0%,25%,0%);
}
A:link
{
text-decoration: none
}
A:active
{
text-decoration: none
}
A:visited
{
text-decoration: none
}
A:hover
{
text-decoration: underline
}
|