OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 12 matching lines...) Expand all Loading... |
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 | 32 |
33 BODY { | 33 BODY { |
34 overflow: hidden; | 34 overflow: hidden; |
35 background-image: url(../ui/bgtile.jpg); | 35 background-image: url(../ui/bgtile.jpg); |
36 padding: 0px; | 36 padding: 0px; |
37 margin: 0px; | 37 margin: 0px; |
38 color: white; | 38 color: white; |
39 } | 39 } |
40 #content { | 40 #content { |
41 visibility: hidden; /* for now */ | 41 visibility: hidden; /* for now */ |
42 position: absolute; | 42 position: absolute; |
43 color: black; | 43 color: black; |
(...skipping 28 matching lines...) Expand all Loading... |
72 position: absolute; | 72 position: absolute; |
73 width: 100%; | 73 width: 100%; |
74 height: 100%; | 74 height: 100%; |
75 } | 75 } |
76 #table-middle { | 76 #table-middle { |
77 padding: 0px; | 77 padding: 0px; |
78 margin: 0px; | 78 margin: 0px; |
79 border: 0px; | 79 border: 0px; |
80 } | 80 } |
81 #book-left { | 81 #book-left { |
82 background-image: url(../ui/scrollwork.gif); | 82 background-image: url(../ui/scrollwork.gif); |
83 background-repeat: repeat-x; | 83 background-repeat: repeat-x; |
84 background-position: right 40px; | 84 background-position: right 40px; |
85 text-align: right; | 85 text-align: right; |
86 vertical-align: top; | 86 vertical-align: top; |
87 } | 87 } |
88 #book-center { | 88 #book-center { |
89 width: 988px; | 89 width: 988px; |
90 height: 662px; | 90 height: 662px; |
91 } | 91 } |
92 #book-right { | 92 #book-right { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 } | 172 } |
173 #output { | 173 #output { |
174 font-family: sans-serif; | 174 font-family: sans-serif; |
175 text-align: right; | 175 text-align: right; |
176 padding-top: 15px; | 176 padding-top: 15px; |
177 width: 250px; | 177 width: 250px; |
178 float: right; | 178 float: right; |
179 padding-right: 25px; | 179 padding-right: 25px; |
180 color: #222222; | 180 color: #222222; |
181 } | 181 } |
OLD | NEW |