tyyli.css: replace colour names with colour codes

It seems that codes are more supported than names.
This commit is contained in:
Mikaela Suomalainen 2013-05-16 10:29:40 +03:00
parent 724d83a8fe
commit bc0aa3acc7

View File

@ -4,21 +4,21 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
color: white; color: #FFFFFF;
background-color: black; background-color: #000000;
text-align: center text-align: center
} }
body { body {
color: white; color: #FFFFFF;
background-color: black; background-color: #000000;
font-family: "DejaVu Sans", Ubuntu, Arial, Arial, Helvetica, sans-serif; font-family: "DejaVu Sans", Ubuntu, Arial, Arial, Helvetica, sans-serif;
text-align: justify-center text-align: justify-center
} }
pre { pre {
color: black; color: #000000;
background-color: white; background-color: #FFFFFF;
font-family: "Ubuntu Mono", "DejaVu Sans Mono", Courier, "Courier New"; font-family: "Ubuntu Mono", "DejaVu Sans Mono", Courier, "Courier New";
} }