~ubuntu-branches/ubuntu/trusty/cinder/trusty

« 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-05-22 09:57:46 UTC
  • Revision ID: package-import@ubuntu.com-20120522095746-9lm71yvzltjybk4b
Tags: upstream-2012.2~f1~20120503.2
Import upstream version 2012.2~f1~20120503.2

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