/* retrogreen.css -- Old monochrome monitor style in green * Copyright 2011 David Meyer. All rights reserved. * * Reproduces appearance of old text-only monochrome monitor, like * ancient Video Terminal, 3270, or circa 1980 PC monitor. * Light-on-dark color scheme with limited number of color shades. * Effects limited to bold (brighter shade), underline, reverse * (dark-on-light). * Web pages should look like curses or OLTP screens. * It's MEANT to look grotty. */ body { color: #009000 ; background-color: black ; font-family: "Bitstream Vera Sans Mono", "Lucida Console", "MS Gothic", monospace ; /* margin: 0 3% ; */ } /* Since all text in monospace, use same font for preformatted text. */ pre { font-family: "Bitstream Vera Sans Mono", "Lucida Console", "MS Gothic", monospace ; } /* All headers use same font size. h1: reverse + bold + stretch + all-caps + center h2: reverse + bold h3: bold + underline h4: bold h5: underline h6: normal face */ h1, h2, h3, h4, h5, h6 { font-size: 1em; } h1 { color: black ; background-color: #009000 ; text-align: center ; text-decoration: bold ; text-transform: uppercase ; letter-spacing: 1em; font-weight: bold ; } /*h2 { color: black ; background-color: #009000 ; font-weight: bold ; } */ h3 { color: #00F000 ; text-decoration: underline ; font-weight: bold ; } h4 { color: #00F000 ; font-weight: bold ; } h5 { text-decoration: underline ; } .reverse { color: black ; background-color: #009000 ; font-weight: bold ; } .centered { text-align: center ; } /* Links rendered as blocks of reverse text. */ a { padding: 2px ; } a:link, a:visited { color: black; background-color: #006000 ; text-decoration: none; } /*a:visited { text-decoration: underline ; } */ /* Link text flashes when clicked. */ a:active { color: #006000; } a:hover { background-color: #00F000; } /* horizontal menu */ .hmenu { clear: both ; margin-left: 0 ; padding-left: 0 ; text-align: center ; } .hmenu li { list-style-type: none; display: inline; margin-right: 2px; } /* vertical menu */ .vmenu { margin-left: 0 ; padding-left: 0 ; } .vmenu li { list-style-type: none; margin: 7px 0 ; }