~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to sandbox/exarkun/papers/2004/pycon/migration/stylesheet.css

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-06-21 22:01:11 UTC
  • mto: (2.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040621220111-vkf909euqnyrp3nr
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
body
 
3
{
 
4
  margin-left: 2em;
 
5
  margin-right: 2em;
 
6
  border: 0px;
 
7
  padding: 0px;
 
8
  font-family: sans-serif;
 
9
  }
 
10
 
 
11
.done { color: #005500; background-color: #99ff99 }
 
12
.notdone { color: #550000; background-color: #ff9999;}
 
13
 
 
14
pre
 
15
{
 
16
  padding: 1em;
 
17
  font-family: Neep Alt, Courier New, Courier;
 
18
  font-size: 12pt;
 
19
  border: thin black solid;
 
20
}
 
21
 
 
22
.boxed
 
23
{
 
24
  padding: 1em;
 
25
  border: thin black solid;
 
26
}
 
27
 
 
28
.shell
 
29
 
30
  background-color: #ffffdd;
 
31
}
 
32
 
 
33
.python
 
34
{
 
35
  background-color: #dddddd;
 
36
}
 
37
 
 
38
.htmlsource
 
39
{
 
40
  background-color: #dddddd;
 
41
}
 
42
 
 
43
.py-prototype
 
44
{
 
45
  background-color: #ddddff;
 
46
}
 
47
 
 
48
 
 
49
.python-interpreter
 
50
{
 
51
  background-color: #ddddff;
 
52
}
 
53
 
 
54
.doit 
 
55
{
 
56
  border: thin blue dashed ;
 
57
  background-color: #0ef
 
58
}
 
59
 
 
60
.py-src-comment
 
61
{
 
62
  color: #1111CC
 
63
}
 
64
 
 
65
.py-src-keyword
 
66
{
 
67
  color: #3333CC;
 
68
  font-weight: bold;
 
69
}
 
70
 
 
71
.py-src-parameter
 
72
{
 
73
  color: #000066;
 
74
  font-weight: bold;
 
75
}
 
76
 
 
77
.py-src-identifier
 
78
{
 
79
  color: #CC0000
 
80
}
 
81
 
 
82
.py-src-string
 
83
{
 
84
  
 
85
  color: #115511
 
86
}
 
87
 
 
88
.py-src-endmarker
 
89
{
 
90
  display: block; /* IE hack; prevents following line from being sucked into the py-listing box. */
 
91
}
 
92
 
 
93
.py-listing, .html-listing, .listing 
 
94
{
 
95
  margin: 1ex;
 
96
  border: thin solid black;
 
97
  background-color: #eee;
 
98
}
 
99
 
 
100
.py-listing pre, .html-listing pre, .listing pre
 
101
{
 
102
  margin: 0px;
 
103
  border: none;
 
104
  border-bottom: thin solid black;
 
105
}
 
106
 
 
107
.py-listing .python 
 
108
{
 
109
  margin-top: 0;
 
110
  margin-bottom: 0;
 
111
  border: none;
 
112
  border-bottom: thin solid black;
 
113
  }
 
114
 
 
115
.html-listing .htmlsource
 
116
{
 
117
  margin-top: 0;
 
118
  margin-bottom: 0;
 
119
  border: none;
 
120
  border-bottom: thin solid black;
 
121
  }
 
122
 
 
123
.caption
 
124
{
 
125
  text-align: center;
 
126
  padding-top: 0.5em;
 
127
  padding-bottom: 0.5em;
 
128
}
 
129
 
 
130
.filename
 
131
{
 
132
  font-style: italic;
 
133
  }
 
134
 
 
135
.manhole-output
 
136
{
 
137
  color: blue;
 
138
}
 
139
 
 
140
hr
 
141
{
 
142
  display: inline;
 
143
  }
 
144
 
 
145
ul
 
146
{
 
147
  padding: 0px;
 
148
  margin: 0px;
 
149
  margin-left: 1em;
 
150
  padding-left: 1em;
 
151
  border-left: 1em;
 
152
  }
 
153
 
 
154
li
 
155
{
 
156
  padding: 2px;
 
157
  }
 
158
 
 
159
dt
 
160
{
 
161
  font-weight: bold;
 
162
  margin-left: 1ex;
 
163
  }
 
164
 
 
165
dd
 
166
{
 
167
  margin-bottom: 1em;
 
168
  }
 
169
 
 
170
div.note
 
171
{
 
172
  background-color: #FFFFCC;
 
173
  margin-top: 1ex;
 
174
  margin-left: 5%;
 
175
  margin-right: 5%;
 
176
  padding-top: 1ex;
 
177
  padding-left: 5%;
 
178
  padding-right: 5%;
 
179
  border: thin black solid;
 
180
}