~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/utils/inspector/static/css/default.css

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel
  • Date: 2013-01-20 12:19:54 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20130120121954-1jt1xa924bshhvh0
Tags: 2.2.0~beta1+dfsg-2
fix typo ipython-qtconsol -> ipython-qtconsole

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
body {
 
2
    background-color: transparent;
 
3
    color: black;
 
4
    margin: 0px 20px 15px 20px;
 
5
}
 
6
 
 
7
/* --- Title style --- */
 
8
div.title h1 {
 
9
    font-size: 180%;
 
10
    font-family: 'Trebuchet MS', sans-serif;
 
11
    background-color: #6487DC;
 
12
    background-image: -webkit-gradient(
 
13
        linear,
 
14
        left bottom,
 
15
        left top,
 
16
        color-stop(0, #6487DC),
 
17
        color-stop(1, #666EDC)
 
18
    );
 
19
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.45);
 
20
    font-weight: normal;
 
21
    padding: 6px 0px 6px 20px;
 
22
    margin: 0px -20px;
 
23
    color: #FFFFFF;
 
24
}
 
25
 
 
26
/*
 
27
 * The next two styles are needed to
 
28
 * modify the anchors present on the
 
29
 * title of pages like scipy.stats or
 
30
 * scipy.io
 
31
 */
 
32
div.title h1 a {
 
33
    color: transparent;
 
34
    cursor: default;
 
35
}
 
36
 
 
37
div.title h1 tt {
 
38
    font-size: 95%;
 
39
    background-color: transparent;
 
40
    color: #FFFFFF;
 
41
}
 
42
 
 
43
 
 
44
/* --- Metadata style --- */
 
45
div.metadata {
 
46
    margin-top: 10px;
 
47
    margin-bottom: 15px;
 
48
    margin-right: 1px;
 
49
    padding: 1px;
 
50
    background-color: #EEEEEE;
 
51
    border: 1px solid #C9C9C9;
 
52
    border-bottom-left-radius: 6px;
 
53
    border-bottom-right-radius: 6px;
 
54
    border-top-left-radius: 6px;
 
55
    border-top-right-radius: 6px;
 
56
    box-shadow: 1px 1px 7px #CACACA;
 
57
    color: #333333;
 
58
}
 
59
 
 
60
div.metadata p {
 
61
    margin: 7px 0px 7px 10px;
 
62
}
 
63
 
 
64
span.def {
 
65
    font-family: monospace;
 
66
}
 
67
 
 
68
span.argspec-highlight {
 
69
    color: red;
 
70
    font-size: 110%;
 
71
    font-weight: 900;
 
72
}
 
73
 
 
74
/* --- Docstring div style --- */
 
75
div.docstring {
 
76
    margin-top: -1px;
 
77
}
 
78
 
 
79
div.docstring p {
 
80
    padding: 0px 10px 0px;
 
81
}
 
82
 
 
83
/* --- Headers style --- */
 
84
div.section {
 
85
    margin: 20px 0px 0px 0px;
 
86
}
 
87
 
 
88
div.section h2 {
 
89
    font-size: 140%;
 
90
    font-family: 'Trebuchet MS', sans-serif;
 
91
    font-weight: normal;
 
92
    background-color: #F2F2F2;
 
93
    border: 1px solid #CCC;
 
94
    color: #20435C;
 
95
    padding: 4px 0px 4px 8px;
 
96
}
 
97
 
 
98
div.section h3 {
 
99
    font-size: 110%;
 
100
    padding: 0px 5px 0px;
 
101
}
 
102
 
 
103
dl.docutils {
 
104
    padding: 0px 10px 0px;
 
105
}
 
106
 
 
107
div.section p {
 
108
    padding: 0px 10px 0px;
 
109
}
 
110
 
 
111
#parameters h2, #returns h2, #raises h2 {
 
112
    background-color: #EDE;
 
113
    border: 1px solid #AAA !important;
 
114
    color: #06C;
 
115
}
 
116
 
 
117
#see-also h2 {
 
118
    background-color: #ffc;
 
119
    border: transparent;
 
120
    color: black;
 
121
    /*margin-top: 4px;*/
 
122
    margin: 4px 0px 0px 0px;
 
123
    padding: 0px 0px 0px 8px;
 
124
}
 
125
 
 
126
#see-also {
 
127
    background-color: #ffc;
 
128
    color: black;
 
129
    padding: 1px;
 
130
    border: 1px solid #FF6 !important;
 
131
}
 
132
 
 
133
#warning {
 
134
    margin-top: 5px;
 
135
    background-color: #FFE4E4;
 
136
    border: 1px solid #F66;
 
137
    padding: 4px 8px 4px 8px;
 
138
    text-align: center;
 
139
}
 
140
 
 
141
/* --- Lists style --- */
 
142
li p span {
 
143
    position: relative;
 
144
    left: -9px;
 
145
}
 
146
 
 
147
ol.arabic {
 
148
    margin-left: -8px;
 
149
}
 
150
 
 
151
/* --- Literal blocks style --- */
 
152
pre.literal-block {
 
153
    padding-left: 35px;
 
154
    font-size: 95%;
 
155
}
 
156
 
 
157
/* --- Docutils table style --- */
 
158
table.docutils {
 
159
    border-collapse: collapse;
 
160
    border-spacing: 0;
 
161
    border: #DDDDDD;
 
162
    margin-left: 15px;
 
163
    margin-bottom: 10px;
 
164
    width: 92%;
 
165
}
 
166
 
 
167
table.docutils td {
 
168
    padding: 5px;
 
169
}
 
170
 
 
171
/* --- Docutils table headers --- */
 
172
table.docutils th {
 
173
    background-color: #EEEEEE;
 
174
    border-bottom-color: #DDDDDD;
 
175
    border-bottom-style: solid;
 
176
    border-bottom-width: 1px;
 
177
    border-top-color: #DDDDDD;
 
178
    border-top-style: solid;
 
179
    border-top-width: 1px;
 
180
    font-weight: bold;
 
181
    text-align: center;
 
182
    padding: 6px 0px 6px 8px;
 
183
    color: navy;
 
184
}
 
185
 
 
186
/* --- Field-list table style --- */
 
187
table.docutils.field-list {
 
188
    font-size: 80%;
 
189
    border-collapse: collapse;
 
190
    border-left: transparent;
 
191
    border-right: transparent;
 
192
    margin-top: 15px;
 
193
    margin-left: 40px;
 
194
    width: 83%;
 
195
}
 
196
 
 
197
/* --- Field-list table headers --- */
 
198
table.docutils.field-list th {
 
199
    background-color: transparent;
 
200
    border-top: transparent;
 
201
    border-bottom: transparent;
 
202
    color: black;
 
203
    font-weight: bold;
 
204
    text-align: left;
 
205
    padding: 4px 0px 4px 8px;
 
206
}
 
207
 
 
208
/* --- Spacing around example code --- */
 
209
div.highlight pre {
 
210
    padding: 2px 0px 2px 0px;
 
211
    background-color: #EFC;
 
212
    border: 1px solid #AC9;
 
213
    border-left: None;
 
214
    border-right: None;
 
215
}
 
216
 
 
217
div.highlight {
 
218
    padding: 0px 10px 0px;
 
219
}
 
220
 
 
221
dt {
 
222
    font-weight: bold;
 
223
    /*font-size: 16px;*/
 
224
}
 
225
 
 
226
.classifier {
 
227
    /*font-size: 10pt;*/
 
228
    font-weight: normal;
 
229
}
 
230
 
 
231
tt {
 
232
    background-color: #ECF0F3;
 
233
    font-size: 95%;
 
234
    padding: 0px 1px;
 
235
}