Prox.css originated with Paul Rupe, at
http://www.geocities.com/u82011729/prox/css.htmlI immediately liked the idea, and have since been using it as an always-valid user stylesheet as well
The default is this:
/* Style the Proxomitron Javascript toolbar */
.proxtoolbar
{
background-color: green !important;
color: white !important;
border: thin solid white !important;
width: 100% !important;
text-align: center !important;
margin-top: 2em !important;
}
/* Generate replacement content for Proxomitron's kills */
.prox
{
font-size: xx-small !important;
font-weight: normal !important;
font-style: normal !important;
font-family: "Times New Roman" serif !important;
display: block !important;
padding: 0 !important;
margin: 0 !important;
max-width: 9em !important;
overflow: hidden !important;
white-space: nowrap !important;
text-transform: lowercase !important;
}
.prox:before
{
content: "[" attr(kill) " - " attr(detail) !important;
/* content: "[" attr(kill) !important; */
}
.prox:after
{
content: "]" !important;
}
@media print, projection
{
/* Hide Proxomitron's kills altogether when printing */
.prox
{
display: none !important;
}
}
@media print
{
.proxlink, .proxtoolbar
{
display: none !important;
}
}
Compare it with my prox.css's bottom section, or someone else's, and you'll see most of us have left these basic rules pretty intact.
My prox.css differs from Paul's in several ways:
-Several "style links" classes are added to the top
-Links with target=_new or target=_blank are marked
-My link bar filter gets its CSS from here
-I added some other .prox rules, and, for me most importantly, have added a 'quick toggle' to toggle kill display.
/* Quick hack to toggle kill display */
.prox, .proxlink, .proxtoolbar, .proxtable, {
/* display: block !important; */
display: none !important;
}
Edited by - Jor on 28 Aug 2002 02:01:49