scratch – Blame information for rev 115

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 /*
2 Copyright (c) 2009 Vladimir Kolesnikov
3  
4 Permission is hereby granted, free of charge, to any person obtaining
5 a copy of this software and associated documentation files (the
6 "Software"), to deal in the Software without restriction, including
7 without limitation the rights to use, copy, modify, merge, publish,
8 distribute, sublicense, and/or sell copies of the Software, and to
9 permit persons to whom the Software is furnished to do so, subject to
10 the following conditions:
11  
12 The above copyright notice and this permission notice shall be
13 included in all copies or substantial portions of the Software.
14  
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23  
24 a {
25 color: #00F;
26 text-decoration: none;
27 }
28  
29 a:hover {
30 color: #77F;
31 text-decoration: underline;
32 }
33  
34 body, td, p {
35 font-family: "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
36 background: #FFF;
37 color: #000;
38 margin: 0px;
39 font-size: small;
40 }
41  
42 p {
43 margin-top: 0.5em;
44 margin-bottom: 0.5em;
45 }
46  
47 #content {
48 margin: 2em;
49 margin-left: 3.5em;
50 margin-right: 3.5em;
51 }
52  
53 #description p {
54 margin-bottom: 0.5em;
55 }
56  
57 .sectiontitle {
58 margin-top: 1em;
59 margin-bottom: 1em;
60 padding: 0.5em;
61 padding-left: 2em;
62 background: #005;
63 color: #FFF;
64 font-weight: bold;
65 }
66  
67 .attr-rw {
68 padding-left: 1em;
69 padding-right: 1em;
70 text-align: center;
71 color: #055;
72 }
73  
74 .attr-name {
75 font-weight: bold;
76 }
77  
78 .attr-desc {
79 }
80  
81 .attr-desc p {
82 margin-top: 0;
83 }
84  
85 .attr-value {
86 font-family: monospace;
87 }
88  
89 .file-title-prefix {
90 font-size: large;
91 }
92  
93 .file-title {
94 font-size: large;
95 font-weight: bold;
96 background: #005;
97 color: #FFF;
98 }
99  
100 .banner {
101 background: #005;
102 color: #FFF;
103 border: 1px solid black;
104 padding: 1em;
105 }
106  
107 .banner td {
108 background: transparent;
109 color: #FFF;
110 }
111  
112 h1 a, h2 a, .sectiontitle a, .banner a {
113 color: #FF0;
114 }
115  
116 h1 a:hover, h2 a:hover, .sectiontitle a:hover, .banner a:hover {
117 color: #FF7;
118 }
119  
120 .dyn-source {
121 display: none;
122 background: #fffde8;
123 color: #000;
124 border: #ffe0bb dotted 1px;
125 margin: 0.5em 2em 0.5em 2em;
126 padding: 0.5em;
127 }
128  
129 .dyn-source .cmt {
130 color: #00F;
131 font-style: italic;
132 }
133  
134 .dyn-source .kw {
135 color: #070;
136 font-weight: bold;
137 }
138  
139 .method {
140 margin-left: 1em;
141 margin-right: 1em;
142 margin-bottom: 1em;
143 }
144  
145 .description pre {
146 padding: 0.5em;
147 border: #ffe0bb dotted 1px;
148 background: #fffde8;
149 }
150  
151 .method .title {
152 font-family: monospace;
153 font-size: large;
154 border-bottom: 1px dashed black;
155 margin-bottom: 0.3em;
156 padding-bottom: 0.1em;
157 }
158  
159 .method .description, .method .sourcecode {
160 margin-left: 1em;
161 }
162  
163 .description p, .sourcecode p {
164 margin-bottom: 0.5em;
165 }
166  
167 .method .sourcecode p.source-link {
168 text-indent: 0em;
169 margin-top: 0.5em;
170 }
171  
172 .method .aka {
173 margin-top: 0.3em;
174 margin-left: 1em;
175 font-style: italic;
176 text-indent: 2em;
177 }
178  
179 h1 {
180 padding: 1em;
181 margin-left: -1.5em;
182 font-size: x-large;
183 font-weight: bold;
184 color: #FFF;
185 background: #007;
186 }
187  
188 h2 {
189 padding: 0.5em 1em 0.5em 1em;
190 margin-left: -1.5em;
191 font-size: large;
192 font-weight: bold;
193 color: #FFF;
194 background: #009;
195 }
196  
197 h3, h4, h5, h6 {
198 color: #220088;
199 border-bottom: #5522bb solid 1px;
200 }
201  
202 .sourcecode > pre {
203 padding: 0.5em;
204 border: 1px dotted black;
205 background: #FFE;
206 }
207  
208 dt {
209 font-weight: bold
210 }
211  
212 dd {
213 margin-bottom: 0.7em;
214 }