35 lines
571 B
SCSS
35 lines
571 B
SCSS
@charset 'utf-8';
|
|
|
|
@import 'paper/variables';
|
|
@import '../libs/bootstrap-sass/assets/stylesheets/bootstrap';
|
|
@import 'paper/bootswatch';
|
|
|
|
|
|
// Modules
|
|
@import "modules/modules";
|
|
|
|
|
|
|
|
/* Responsive image/video classes */
|
|
.rich-text img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
.richtext-image.left{
|
|
float:left;
|
|
}
|
|
.richtext-image.right{
|
|
float:right;
|
|
}
|
|
.responsive-object {
|
|
position: relative;
|
|
}
|
|
.responsive-object iframe,
|
|
.responsive-object object,
|
|
.responsive-object embed {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|