~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to doc/source/_static/tweaks.css

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-08-16 14:04:11 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20120816140411-0mr4n241wmk30t9l
Tags: upstream-2012.2~f3
Import upstream version 2012.2~f3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ul.todo_list {
2
 
    list-style-type: none;
3
 
    margin: 0;
4
 
    padding: 0;
5
 
}
6
 
 
7
 
ul.todo_list li {
8
 
    display: block;
9
 
    margin: 0;
10
 
    padding: 7px 0;
11
 
    border-top: 1px solid #eee;
12
 
}
13
 
 
14
 
ul.todo_list li p {
15
 
    display: inline;
16
 
}
17
 
 
18
 
ul.todo_list li p.link {
19
 
    font-weight: bold;
20
 
}
21
 
 
22
 
ul.todo_list li p.details {
23
 
    font-style: italic;
24
 
}
25
 
 
26
 
ul.todo_list li {
27
 
}
28
 
 
29
 
div.admonition {
30
 
    border: 1px solid #8F1000;
31
 
}
32
 
 
33
 
div.admonition p.admonition-title {
34
 
    background-color: #8F1000;
35
 
    border-bottom: 1px solid #8E8E8E;
36
 
}
37
 
 
38
 
a {
39
 
        color: #CF2F19;
40
 
}
41
 
 
42
 
div.related ul li a {
43
 
        color: #CF2F19;
44
 
}
45
 
 
46
 
div.sphinxsidebar h4 {
47
 
        background-color:#8E8E8E;
48
 
        border:1px solid #255E6E;
49
 
        color:white;
50
 
        font-size:1em;
51
 
        margin:1em 0 0.5em;
52
 
        padding:0.1em 0 0.1em 0.5em;
53
 
}
54
 
 
55
 
em {
56
 
    font-style: normal;
57
 
}
58
 
 
59
 
table.docutils {
60
 
        font-size: 11px;
61
 
}
62
 
 
63
 
.tweet_list li {
64
 
    font-size: 0.9em;
65
 
    border-bottom: 1px solid #eee;
66
 
    padding: 5px 0;
67
 
}
68
 
 
69
 
.tweet_list li .tweet_avatar {
70
 
    float: left;
71
 
}
72
 
 
73
 
/* ------------------------------------------
74
 
PURE CSS SPEECH BUBBLES
75
 
by Nicolas Gallagher
76
 
- http://nicolasgallagher.com/pure-css-speech-bubbles/
77
 
 
78
 
http://nicolasgallagher.com
79
 
http://twitter.com/necolas
80
 
 
81
 
Created: 02 March 2010
82
 
Version: 1.1 (21 October 2010)
83
 
 
84
 
Dual licensed under MIT and GNU GPLv2 © Nicolas Gallagher
85
 
------------------------------------------ */
86
 
/* THE SPEECH BUBBLE
87
 
------------------------------------------------------------------------------------------------------------------------------- */
88
 
 
89
 
/* THE SPEECH BUBBLE
90
 
------------------------------------------------------------------------------------------------------------------------------- */
91
 
 
92
 
.triangle-border {
93
 
        position:relative;
94
 
        padding:15px;
95
 
        margin:1em 0 3em;
96
 
        border:5px solid #BC1518;
97
 
        color:#333;
98
 
        background:#fff;
99
 
 
100
 
        /* css3 */
101
 
        -moz-border-radius:10px;
102
 
        -webkit-border-radius:10px;
103
 
        border-radius:10px;
104
 
}
105
 
 
106
 
/* Variant : for left positioned triangle
107
 
------------------------------------------ */
108
 
 
109
 
.triangle-border.left {
110
 
        margin-left:30px;
111
 
}
112
 
 
113
 
/* Variant : for right positioned triangle
114
 
------------------------------------------ */
115
 
 
116
 
.triangle-border.right {
117
 
        margin-right:30px;
118
 
}
119
 
 
120
 
/* THE TRIANGLE
121
 
------------------------------------------------------------------------------------------------------------------------------- */
122
 
 
123
 
.triangle-border:before {
124
 
        content:"";
125
 
        display:block; /* reduce the damage in FF3.0 */
126
 
        position:absolute;
127
 
        bottom:-40px; /* value = - border-top-width - border-bottom-width */
128
 
        left:40px; /* controls horizontal position */
129
 
        width:0;
130
 
        height:0;
131
 
        border:20px solid transparent;
132
 
        border-top-color:#BC1518;
133
 
}
134
 
 
135
 
/* creates the smaller  triangle */
136
 
.triangle-border:after {
137
 
        content:"";
138
 
        display:block; /* reduce the damage in FF3.0 */
139
 
        position:absolute;
140
 
        bottom:-26px; /* value = - border-top-width - border-bottom-width */
141
 
        left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
142
 
        width:0;
143
 
        height:0;
144
 
        border:13px solid transparent;
145
 
        border-top-color:#fff;
146
 
}
147
 
 
148
 
/* Variant : top
149
 
------------------------------------------ */
150
 
 
151
 
/* creates the larger triangle */
152
 
.triangle-border.top:before {
153
 
        top:-40px; /* value = - border-top-width - border-bottom-width */
154
 
        right:40px; /* controls horizontal position */
155
 
        bottom:auto;
156
 
        left:auto;
157
 
        border:20px solid transparent;
158
 
        border-bottom-color:#BC1518;
159
 
}
160
 
 
161
 
/* creates the smaller  triangle */
162
 
.triangle-border.top:after {
163
 
        top:-26px; /* value = - border-top-width - border-bottom-width */
164
 
        right:47px; /* value = (:before right) + (:before border-right) - (:after border-right) */
165
 
        bottom:auto;
166
 
        left:auto;
167
 
        border:13px solid transparent;
168
 
        border-bottom-color:#fff;
169
 
}
170
 
 
171
 
/* Variant : left
172
 
------------------------------------------ */
173
 
 
174
 
/* creates the larger triangle */
175
 
.triangle-border.left:before {
176
 
        top:10px; /* controls vertical position */
177
 
        left:-30px; /* value = - border-left-width - border-right-width */
178
 
        bottom:auto;
179
 
        border-width:15px 30px 15px 0;
180
 
        border-style:solid;
181
 
        border-color:transparent #BC1518;
182
 
}
183
 
 
184
 
/* creates the smaller  triangle */
185
 
.triangle-border.left:after {
186
 
        top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
187
 
        left:-21px; /* value = - border-left-width - border-right-width */
188
 
        bottom:auto;
189
 
        border-width:9px 21px 9px 0;
190
 
        border-style:solid;
191
 
        border-color:transparent #fff;
192
 
}
193
 
 
194
 
/* Variant : right
195
 
------------------------------------------ */
196
 
 
197
 
/* creates the larger triangle */
198
 
.triangle-border.right:before {
199
 
        top:10px; /* controls vertical position */
200
 
        right:-30px; /* value = - border-left-width - border-right-width */
201
 
        bottom:auto;
202
 
    left:auto;
203
 
        border-width:15px 0 15px 30px;
204
 
        border-style:solid;
205
 
        border-color:transparent #BC1518;
206
 
}
207
 
 
208
 
/* creates the smaller  triangle */
209
 
.triangle-border.right:after {
210
 
        top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
211
 
        right:-21px; /* value = - border-left-width - border-right-width */
212
 
        bottom:auto;
213
 
    left:auto;
214
 
        border-width:9px 0 9px 21px;
215
 
        border-style:solid;
216
 
        border-color:transparent #fff;
217
 
}
218
 
 
 
1
body {
 
2
  background: #fff url(../_static/header_bg.jpg) top left no-repeat;
 
3
}
 
4
 
 
5
#header {
 
6
  width: 950px;
 
7
  margin: 0 auto;
 
8
  height: 102px;
 
9
}
 
10
 
 
11
#header h1#logo {
 
12
  background: url(../_static/openstack_logo.png) top left no-repeat;
 
13
  display: block;
 
14
  float: left;
 
15
  text-indent: -9999px;
 
16
  width: 175px;
 
17
  height: 55px;
 
18
}
 
19
 
 
20
#navigation {
 
21
  background: url(../_static/header-line.gif) repeat-x 0 bottom;
 
22
  display: block;
 
23
  float: left;
 
24
  margin: 27px 0 0 25px;
 
25
  padding: 0;
 
26
}
 
27
 
 
28
#navigation li{
 
29
  float: left;
 
30
  display: block;
 
31
  margin-right: 25px;
 
32
}
 
33
 
 
34
#navigation li a {
 
35
  display: block;
 
36
  font-weight: normal;
 
37
  text-decoration: none;
 
38
  background-position: 50% 0;
 
39
  padding: 20px 0 5px;
 
40
  color: #353535;
 
41
  font-size: 14px;
 
42
}
 
43
 
 
44
#navigation li a.current, #navigation li a.section {
 
45
  border-bottom: 3px solid #cf2f19;
 
46
  color: #cf2f19;
 
47
}
 
48
 
 
49
div.related {
 
50
  background-color: #cde2f8;
 
51
  border: 1px solid #b0d3f8;
 
52
}
 
53
 
 
54
div.related a {
 
55
  color: #4078ba;
 
56
  text-shadow: none;
 
57
}
 
58
 
 
59
div.sphinxsidebarwrapper {
 
60
  padding-top: 0;
 
61
}
 
62
 
 
63
pre {
 
64
  color: #555;
 
65
}
 
66
 
 
67
div.documentwrapper h1, div.documentwrapper h2, div.documentwrapper h3, div.documentwrapper h4, div.documentwrapper h5, div.documentwrapper h6 {
 
68
  font-family: 'PT Sans', sans-serif !important;
 
69
  color: #264D69;
 
70
  border-bottom: 1px dotted #C5E2EA;
 
71
  padding: 0;
 
72
  background: none;
 
73
  padding-bottom: 5px;
 
74
}
 
75
 
 
76
div.documentwrapper h3 {
 
77
  color: #CF2F19;
 
78
}
 
79
 
 
80
a.headerlink {
 
81
  color: #fff !important;
 
82
  margin-left: 5px;
 
83
  background: #CF2F19 !important;
 
84
}
 
85
 
 
86
div.body {
 
87
  margin-top: -25px;
 
88
  margin-left: 230px;
 
89
}
 
90
 
 
91
div.document {
 
92
  width: 960px;
 
93
  margin: 0 auto;
 
94
}
 
 
b'\\ No newline at end of file'