Syntax highlightning CSS

git-svn-id: file:///svn/phpbb/trunk@4046 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud 2003-05-22 01:33:00 +00:00
parent 64b7c1d73d
commit 81f3b7e85d

View file

@ -269,6 +269,13 @@ span.hilit {
} }
/* Quote & Code blocks */ /* Quote & Code blocks */
.quote {
color: #444;
font: normal 70%/125% Verdana, Arial, Helvetica, sans-serif;
border: #D1D7DC solid 1px;
background-color: #FAFAFA;
}
.code { .code {
color: #006600; color: #006600;
font: normal 70% 'Courier New', monospace; font: normal 70% 'Courier New', monospace;
@ -276,12 +283,13 @@ span.hilit {
background-color: #FAFAFA; background-color: #FAFAFA;
} }
.quote { /* Syntax highlighning */
color: #444; .hl_bg { color: #FFFFFF }
font: normal 70%/125% Verdana, Arial, Helvetica, sans-serif; .hl_comment { color: #FF8000 }
border: #D1D7DC solid 1px; .hl_default { color: #0000BB }
background-color: #FAFAFA; .hl_html { color: #000000 }
} .hl_keyword { color: #007700 }
.hl_string { color: #DD0000 }
/* Copyright and bottom info */ /* Copyright and bottom info */
.copyright { .copyright {