[Python-checkins] r57257 - doctools/trunk/sphinx/style/default.css doctools/trunk/sphinx/style/traditional.css
georg.brandl
python-checkins at python.org
Tue Aug 21 08:16:00 CEST 2007
Author: georg.brandl
Date: Tue Aug 21 08:16:00 2007
New Revision: 57257
Modified:
doctools/trunk/sphinx/style/default.css
doctools/trunk/sphinx/style/traditional.css
Log:
Don't use fixed font names, only generic ones like "sans-serif".
Modified: doctools/trunk/sphinx/style/default.css
==============================================================================
--- doctools/trunk/sphinx/style/default.css (original)
+++ doctools/trunk/sphinx/style/default.css Tue Aug 21 08:16:00 2007
@@ -3,7 +3,7 @@
*/
body {
- font-family: 'Bitstream Vera Sans', 'Arial', sans-serif;
+ font-family: sans-serif;
font-size: 13px;
background-color: #11303d;
color: #000;
@@ -143,7 +143,7 @@
div.sidebar input {
border: 1px solid #98dbcc;
- font-family: 'Bitstream Vera Sans', 'Arial', sans-serif;
+ font-family: sans-serif;
font-size: 1em;
}
@@ -702,7 +702,6 @@
}
pre {
- font-family: 'Bitstream Vera Sans Mono', monospace;
padding: 5px;
background-color: #efc;
color: #333;
@@ -712,7 +711,6 @@
}
tt {
- font-family: 'Bitstream Vera Sans Mono', monospace;
background-color: #ecf0f3;
padding: 0 1px 0 1px;
}
@@ -764,7 +762,7 @@
form.comment textarea {
border: 1px solid #ccc;
padding: 2px;
- font-family: 'Bitstream Vera Sans', 'Verdana', sans-serif;
+ font-family: sans-serif;
font-size: 13px;
}
Modified: doctools/trunk/sphinx/style/traditional.css
==============================================================================
--- doctools/trunk/sphinx/style/traditional.css (original)
+++ doctools/trunk/sphinx/style/traditional.css Tue Aug 21 08:16:00 2007
@@ -606,7 +606,7 @@
}
pre {
- font-family: 'Bitstream Vera Sans Mono', monospace;
+ font-family: monospace;
padding: 5px;
color: #00008b;
border-left: none;
@@ -614,7 +614,7 @@
}
tt {
- font-family: 'Bitstream Vera Sans Mono', monospace;
+ font-family: monospace;
background-color: #ecf0f3;
padding: 0 1px 0 1px;
}
@@ -666,7 +666,7 @@
form.comment textarea {
border: 1px solid #ccc;
padding: 2px;
- font-family: 'Bitstream Vera Sans', 'Verdana', sans-serif;
+ font-family: sans-serif;
font-size: 13px;
}
More information about the Python-checkins
mailing list