[SQL-CVS] SQLObject/docs default.css,1.1.1.1,1.2
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-06-28 22:18:52
|
Update of /cvsroot/sqlobject/SQLObject/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv1312
Modified Files:
default.css
Log Message:
Made header levels more distinct
Index: default.css
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/docs/default.css,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** default.css 26 Feb 2003 23:59:42 -0000 1.1.1.1
--- default.css 28 Jun 2003 22:18:49 -0000 1.2
***************
*** 108,121 ****
font-family: Helvetica, Arial, sans-serif;
border: thin solid black;
- background-color: #cccccc;
-moz-border-radius: 8px;
padding: 4px;
}
h1.title {
text-align: center;
background-color: #444499;
color: #eeeeee;
! border: medium solid black;
-moz-border-radius: 20px;
}
--- 108,137 ----
font-family: Helvetica, Arial, sans-serif;
border: thin solid black;
-moz-border-radius: 8px;
padding: 4px;
}
+ h1 {
+ background-color: #444499;
+ border: medium solid black;
+ color: #ffffff;
+ }
+
+ h2 {
+ background-color: #666666;
+ color: #ffffff;
+ border: medium solid black;
+ }
+
+ h3, h4, h5, h6 {
+ background-color: #cccccc;
+ color: #000000;
+ }
+
h1.title {
text-align: center;
background-color: #444499;
color: #eeeeee;
! border: thick solid black;
-moz-border-radius: 20px;
}
***************
*** 236,237 ****
--- 252,274 ----
ul.auto-toc {
list-style-type: none }
+
+ // Highlighting:
+
+ .function {color: #000077; font-weight: bold}
+ .keyword {color: #004444;}
+ .comment {color: #770000; font-style: italic}
+ .normal {color: #000000;}
+ .string {color: #006600;}
+ .symbol {color: #000000;}
+
+ .htmltag {color: #000077;}
+ .htmlsymbol {color: #000000;}
+ .htmlnormal {color: #000000;}
+ .htmlcomment {color: #770000; font-style: italic}
+ .htmlstring {color: #006600;}
+ .htmlattr {color: #000000;}
+
+ .stmlfunction {color: #000077; font-weight: bold}
+ .stmlattr {color: #000000;}
+ .stmlstring {color: #006600;}
+ .stmlexpr {color: #004444;}
\ No newline at end of file
|