You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
540 B
Plaintext
32 lines
540 B
Plaintext
// Blockquotes
|
|
|
|
blockquote {
|
|
border-right: 5px solid @blockquote-border-color;
|
|
border-left: 0;
|
|
|
|
// Float left with text-align: left
|
|
&.pull-left {
|
|
p,
|
|
small,
|
|
.small {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Horizontal description lists
|
|
|
|
@media (min-width: @grid-float-breakpoint) {
|
|
.dl-horizontal {
|
|
dt {
|
|
float: right;
|
|
width: (@component-offset-horizontal - 20);
|
|
clear: right;
|
|
text-align: left;
|
|
}
|
|
dd {
|
|
margin-left: 0;
|
|
margin-right: @component-offset-horizontal;
|
|
}
|
|
}
|
|
} |