43 lines
831 B
Plaintext
43 lines
831 B
Plaintext
// WordPress Generated Classes
|
|
// http://codex.wordpress.org/CSS#WordPress_Generated_Classes
|
|
|
|
// Media alignment
|
|
.alignnone {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
max-width: 100%;
|
|
}
|
|
.aligncenter {
|
|
display: block;
|
|
margin: (@line-height-computed / 2) auto;
|
|
}
|
|
.alignleft,
|
|
.alignright {
|
|
margin-bottom: (@line-height-computed / 2);
|
|
}
|
|
@media (min-width: @screen-sm-min) {
|
|
// Only float if not on an extra small device
|
|
.alignleft {
|
|
float: left;
|
|
margin-right: (@line-height-computed / 2);
|
|
}
|
|
.alignright {
|
|
float: right;
|
|
margin-left: (@line-height-computed / 2);
|
|
}
|
|
}
|
|
|
|
// Captions
|
|
.wp-caption {
|
|
&:extend(.thumbnail all);
|
|
}
|
|
.wp-caption-text {
|
|
&:extend(.thumbnail .caption all);
|
|
}
|
|
|
|
// Text meant only for screen readers
|
|
.screen-reader-text {
|
|
&:extend(.sr-only all);
|
|
&:extend(.sr-only-focusable all);
|
|
}
|