Skip to content
Snippets Groups Projects
Commit 0bb7a0bc authored by rtoy's avatar rtoy
Browse files

Trac #14: cmucl.css missing from html tarball

cmucl.css:
o New file, copied from cmucl-www.  Remember to update from cmucl-www
  whenever that version changes!

Makefile:
o Include cmucl.css in html tarball.
parent 1e90a543
No related branches found
No related tags found
No related merge requests found
......@@ -86,10 +86,12 @@ all: cmu-user.ps
%.ps : %.ps1
if [ -x psset ]; then psset -d -o $@ $<; else cp $< $@; fi
# Tar up the html files
# Tar up the html files. Note: cmucl.css is duplicated here, from the
# cmucl-www repository. Please remember to update cmucl.css here
# whenever cmucl.css changes in cmucl-www.
cmu-user-html.tgz : cmu-user.html
mkdir cmu-user
cp *.html *.gif cmu-user
cp cmucl.css *.html *.gif cmu-user
tar cf - cmu-user | gzip > cmu-user-html.tgz
# generate Postscript for letter format, instead of for A4 paper
......
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;
}
.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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment