[Python-checkins] python/dist/src/Doc/html style.css,1.27,1.27.8.1

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Sep 30 11:43:53 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/html
In directory sc8-pr-cvs1:/tmp/cvs-serv24672

Modified Files:
      Tag: release23-maint
	style.css 
Log Message:
Update to CSS from trunk revision 1.35.


Index: style.css
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/html/style.css,v
retrieving revision 1.27
retrieving revision 1.27.8.1
diff -C2 -d -r1.27 -r1.27.8.1
*** style.css	16 Jul 2003 14:01:56 -0000	1.27
--- style.css	30 Sep 2003 15:43:49 -0000	1.27.8.1
***************
*** 50,54 ****
  h2                      { font-size: 150%; }
  h3, h4                  { font-size: 120%; }
! code, tt                { font-family: lucida typewriter, lucidatypewriter,
                                         monospace; }
  var                     { font-family: times, serif;
--- 50,62 ----
  h2                      { font-size: 150%; }
  h3, h4                  { font-size: 120%; }
! 
! /* LaTeX2HTML insists on inserting <br> elements into headers which
!  * are marked with \label.  This little bit of CSS magic ensures that
!  * these elements don't cause spurious whitespace to be added.
!  */
! h1>br, h2>br, h3>br,
! h4>br, h5>br, h6>br     { display: none; }
! 
! code, tt                { font-family: "lucida typewriter", lucidatypewriter,
                                         monospace; }
  var                     { font-family: times, serif;
***************
*** 65,69 ****
  div.warning             { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 0.5em;
                            margin-left: 2em;
                            margin-right: 2em; }
--- 73,77 ----
  div.warning             { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 1em;
                            margin-left: 2em;
                            margin-right: 2em; }
***************
*** 75,79 ****
  div.note                { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 0.5em;
                            margin-left: 2em;
                            margin-right: 2em; }
--- 83,87 ----
  div.note                { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 1em;
                            margin-left: 2em;
                            margin-right: 2em; }
***************
*** 87,91 ****
  
  .verbatim pre           { color: #00008b;
!                           font-family: lucida typewriter, lucidatypewriter,
                                         monospace;
                            font-size: 90%; }
--- 95,99 ----
  
  .verbatim pre           { color: #00008b;
!                           font-family: "lucida typewriter", lucidatypewriter,
                                         monospace;
                            font-size: 90%; }
***************
*** 132,136 ****
  .seealso                { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 4pt; }
  
  .seealso .heading       { font-size: 110%; }
--- 140,144 ----
  .seealso                { background-color: #fffaf0;
                            border: thin solid black;
!                           padding: 0pt 1em 4pt 1em; }
  
  .seealso .heading       { font-size: 110%; }
***************
*** 141,142 ****
--- 149,158 ----
   */
  .availability .platform { font-weight: bold; }
+ 
+ 
+ /*
+  * Some specialization for printed output.
+  */
+ @media print {
+   .online-navigation    { display: none; }
+   }





More information about the Python-checkins mailing list