~ubuntu-branches/ubuntu/oneiric/weave/oneiric

« back to all changes in this revision

Viewing changes to tools/docs/docs.css

  • Committer: Bazaar Package Importer
  • Author(s): Micah Gersten
  • Date: 2010-08-11 00:35:15 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100811003515-o3jbh826bnd1syjv
Tags: 1.4.3-1ubuntu1
* Add -fshort-wchar to CXXFLAGS to fix FTBFS in Ubuntu
  - update debian/rules 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
body {
2
 
    font-family: palatino, palatino linotype, georgia, serif;
3
 
    font-size: 10pt;
4
 
    text-align: center;
5
 
}
6
 
 
7
 
#title {
8
 
    font-size: 13pt;
9
 
    text-align: center;
10
 
    text-transform: lowercase;
11
 
    font-variant: small-caps;
12
 
    margin-bottom: 1em;
13
 
}
14
 
#title i {
15
 
    font-size: 14pt;
16
 
    font-variant: normal;
17
 
    text-transform: none;
18
 
}
19
 
 
20
 
.popup-enabled {
21
 
    cursor: pointer;
22
 
    border-bottom: dotted 1px black;
23
 
}
24
 
 
25
 
.popup {
26
 
    position: absolute;
27
 
    z-index: 100;
28
 
}
29
 
 
30
 
.popup .item {
31
 
    cursor: pointer;
32
 
    font-family: helvetica neue, arial, sans-serif;
33
 
    background-color: #f0f0f0;
34
 
    color: black;
35
 
    padding: 3px;
36
 
    border: black dotted;
37
 
    border-width: 1px 1px 0 1px;
38
 
}
39
 
 
40
 
.popup .selected {
41
 
    background-color: black;
42
 
    color: white;
43
 
}
44
 
 
45
 
.popup .bottom {
46
 
    border-bottom: 1px black dotted;
47
 
}
48
 
 
49
 
#content {
50
 
    text-align: left;
51
 
    margin: 0 auto;
52
 
}
53
 
 
54
 
.documentation {
55
 
    float: left;
56
 
    line-height: 1.4em;
57
 
    width: 24em !important;
58
 
}
59
 
 
60
 
.documentation h1, .documentation h2, .documentation h3 {
61
 
    font-weight: normal;
62
 
    line-height: 1.4em;
63
 
}
64
 
 
65
 
pre, code, .code, tt {
66
 
    font-family: monaco, consolas, andale mono, monospace;
67
 
}
68
 
 
69
 
.documentation pre {
70
 
    font-size: 6pt;
71
 
    line-height: 1.4em;
72
 
}
73
 
 
74
 
.code {
75
 
    float: left;
76
 
    white-space: pre;
77
 
    font-size: 9pt;
78
 
    background-color: #f0f0f0;
79
 
    margin: 0;
80
 
}
81
 
 
82
 
/*
83
 
 * Add a small triangle to each code block, to make it easy to distinguish
84
 
 * sections. The triangle is drawn usng Tantek Celik's CSS polygon hack.
85
 
 */
86
 
.code::before {
87
 
    content: "";
88
 
    display: block;
89
 
    position: absolute;
90
 
    margin-top: 1.4em;
91
 
    margin-left: -2ex;
92
 
    width: 0;
93
 
    height: 0;
94
 
    border: .6em solid transparent;
95
 
    border-left-color: #bbbbbb;
96
 
    border-right: 0;
97
 
}
98
 
 
99
 
.divider {
100
 
    clear: both;
101
 
    height: 0;
102
 
    line-height: 0;
103
 
}
104
 
 
105
 
.intra-wiki {
106
 
    color: black;
107
 
    text-decoration: none;
108
 
    border-bottom: solid 1px gray;
109
 
}
110
 
 
111
 
.highlight { 
112
 
    background-color: yellow;
113
 
}
114
 
 
115
 
a {
116
 
    color: black;
117
 
    text-decoration: underline;
118
 
}
119
 
 
120
 
#toc {
121
 
    padding: 16px;
122
 
    margin-bottom: 7em;
123
 
}
124
 
#toc p {
125
 
    float: left;
126
 
    margin-right: 1ex;
127
 
}
128
 
#toc ol {
129
 
    padding: 0;
130
 
}
131
 
#toc ol ol {
132
 
    float: left;
133
 
}
134
 
#toc li {
135
 
    clear: both;
136
 
    display: block;
137
 
    list-style: none;
138
 
}
139
 
#toc li a {
140
 
    float: left;
141
 
    font-style: normal;
142
 
}
143
 
#toc li li a {
144
 
    float: none;
145
 
    font-style: italic;
146
 
}
147
 
#toc li li {
148
 
    clear: none;
149
 
    float: left;
150
 
    display: list-item;
151
 
    list-style: square inside;
152
 
    margin-left: 1ex;
153
 
}