Sender: johnw@aris.dynodns.net Newsgroups: gnu.emacs.sources Subject: Re: emacs-wiki.el 2.1 References: From: John Wiegley Date: 05 Apr 2001 13:08:50 -0700 Message-ID: Organization: mail2news@nym.alias.net >>>>> On Thu Apr 5, John writes: > http://www.gci-net.com/~johnw/Emacs/emacs-wiki.css Some people (including myself) are having troubles downloading the CSS file. I have included it below. CSS is the Cascading Style Sheets standard, from the W3 consortium. It provides a way of altering the appearance of a webpage, without changing the HTML code. For example, say you wanted left and right margins on your paragraphs. In the old days, people would use nested tags to achieve that effect. With CSS, it's simple: p { margin-left: 10%; margin-right: 10% } Almost everything visual you would ordinarily want done to a webpage, can be done through CSS. That's why emacs-wiki uses it, rather than generating extra-complex HTML code. > p.s. This page conforms to all the rules of WikiMarkup, and can be > viewed as HTML at http://www.gci-net.com/~johnw/EmacsWikiNews This URL should have been: http://www.gci-net.com/~johnw/EmacsWikiNews.html Thanks, John --[ file: emacs-wiki.css ]---------------------------------------------- a.nonexistent { font-weight: bold; background-color: #F8F8F8; color: #FF2222; } a.nonexistent:visited { background-color: #F8F8F8; color: #FF2222; } body { color: black; background: white; background-image: url(paper.jpg); margin-left: 5%; margin-right: 5%; margin-top: 3% } hr { margin-left: 10%; margin-right: 10% } h2,h3,h4,h5,h6 { margin-left: 0% } pre { color: green; font-weight: bold; white-space: pre; font-family: "Courier New", monospace; margin-left: 5% } pre.bad { color: rgb(192, 101, 101) } p.verse { white-space: pre; margin-left: 5% } li { list-style-type: disc } p.changed { padding-left: 0.2em; border-left: solid; border-top: none; border-bottom: none; border-right: none; border-left-width: thin; border-color: red; } tt { color: green } em { font-style: italic; } strong { font-weight: bold } navbar { text-align: center } dropcap { float: left; font: bold 1.4em "Times New Roman", Times, serif; color: rgb(51, 0, 102); background: rgb(255, 255, 153); } table { font-family: sans-serif; font-size: 80%; } td { font-size: 80% } td.shaded { background: rgb(255, 255, 153) } th.shaded { background: rgb(204, 204, 153) }