You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
633 B
41 lines
633 B
// Bordered & Pulled
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-border {
|
|
padding: 0.2em 0.25em 0.15em;
|
|
border: solid 0.08em $fa-border-color;
|
|
border-radius: 0.1em;
|
|
}
|
|
|
|
.#{$fa-css-prefix}-pull-left {
|
|
float: left;
|
|
}
|
|
.#{$fa-css-prefix}-pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.#{$fa-css-prefix} {
|
|
&.#{$fa-css-prefix}-pull-left {
|
|
margin-right: 0.3em;
|
|
}
|
|
&.#{$fa-css-prefix}-pull-right {
|
|
margin-left: 0.3em;
|
|
}
|
|
}
|
|
|
|
/* Deprecated as of 4.4.0 */
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.#{$fa-css-prefix} {
|
|
&.pull-left {
|
|
margin-right: 0.3em;
|
|
}
|
|
&.pull-right {
|
|
margin-left: 0.3em;
|
|
}
|
|
}
|
|
|