Changeset 415
- Timestamp:
- Apr 16, 2008, 9:21:29 PM (17 years ago)
- Location:
- trunk/packages/sipb-xen-www/code
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-www/code/static/layout.css
r210 r415 1 html,body { 2 height: 100%; 1 /* 2 Good layout ideas stolen from Debathena. 3 Hey, we use some different fonts (in style.css.) 4 And the background color is unmistakably different. 5 Some other things are tweaked too. 6 */ 7 8 /* This file contains screen-only layout declarations that won't be 9 used for printing. */ 10 11 /* Make <body /> show up as a centered white box with rounded border, 12 over the darker enclosing <html />. */ 13 html { 14 padding: .75em; 15 background: #09c; 3 16 } 17 body { 18 position: relative; 19 margin: 0 auto; 20 padding: 1.2em; 21 border: 1px solid black; 22 -moz-border-radius: .4em; 23 -webkit-border-radius: .4em; 24 border-radius: .4em; 25 background: #fff; 26 } 27 28 /* Limit the <body /> width for readability. */ 29 body { 30 max-width: 60em; 31 } 32 33 /* Increase line heights for better screen readability. */ 34 p, li, dt, dd, address { 35 line-height: 1.5em; 36 } 37 pre { 38 line-height: 1.25em; 39 } -
trunk/packages/sipb-xen-www/code/static/style.css
r205 r415 1 h1 { 2 border-bottom: 1px dashed black; 3 margin-top: 0; 4 overflow: auto; 5 } 6 h1, h2, h3, h4, h5, h6 { 7 font-family: "Trebuchet MS", Trebuchet, Sans, sans-serif; 8 font-weight: bold; 9 color: #529; 10 } 11 kbd, dt { 12 font-weight: bold; 13 } 1 /* 2 Good style ideas stolen from Debathena. 3 Hey, we use some different fonts. 4 And the colors are unmistakably different. 5 */ 6 7 /* Basic fonts and sizes. */ 14 8 html { 15 9 font-size: 87.5%; … … 18 12 font-family: Tahoma, Sans, sans-serif; 19 13 } 14 h1, h2, h3, h4, h5, h6 { 15 font-family: "Trebuchet MS", Trebuchet, Sans, sans-serif; 16 font-weight: bold; 17 } 20 18 pre, code, samp, kbd, tt { 21 19 font-family: "Bitstream Vera Sans Mono", "Luxi Mono", "Courier New", monospace; 22 20 font-size: 100%; 23 21 } 24 #logo { 25 float: right; 26 margin: -1em -1em 0 0; 22 23 /* Blue headings. */ 24 h1, h2, h3, h4, h5, h6 { 25 color: #13a; 27 26 } 28 #logo img { 29 border: none; 27 28 /* Dashed line under the header. */ 29 h1 { 30 border-bottom: 1px dashed black; 31 margin-top: 0; 32 overflow: auto; 30 33 } 31 p, li { 32 line-height: 1.5em; 33 } 34 .long li, .long dd { 35 margin-bottom: .5em; 36 } 34 37 35 pre { 38 36 background: #f6f6f6; 39 37 border: 1px solid #ddd; 40 38 padding: .125em; 41 line-height: 1.25em;42 }43 .note {44 border: 1px solid #eea;45 background: #ffd;46 padding: .25em;47 39 } 48 40 a:link, a:visited { … … 52 44 text-decoration: underline; 53 45 } 54 var {55 color: #090;56 }57 .index h1 tt {58 font-size: 83%;59 }60 .index table {61 border-collapse: collapse;62 }63 .index table td {64 padding: 0 0.5em;65 }66 .index table td a {67 font-family: "Bitstream Vera Sans Mono", "Luxi Mono", "Courier New", monospace;68 }69 46 70 #loadingnotice { 71 padding: 2px; 72 display: none; 73 color: #FFFFFF; 74 background: #CC2200; 75 position: fixed; 76 right: 10px; 77 top: 5px; 78 } 79 47 /* Highlight error messages in bright red. */ 80 48 .error { 81 49 color: #FF0000; 82 50 padding: 0.25em; 83 51 } 84 85 52 td.error { 86 53 border: 1px solid red; -
trunk/packages/sipb-xen-www/code/templates/skeleton.tmpl
r267 r415 57 57 </div> 58 58 59 <div id="loadingnotice" class="loadingnotice">LOADING</div>60 59 <div id="result" class="result"> 61 60 #if $varExists('result')
Note: See TracChangeset
for help on using the changeset viewer.