papercss/src/content/_images.scss

29 lines
408 B
SCSS
Raw Normal View History

2017-09-27 23:10:41 +02:00
img {
2017-12-23 09:43:23 +01:00
@include border-style();
2018-05-24 14:13:53 +02:00
border: 2px solid $primary;
display: block;
height: auto;
max-width: 100%;
2017-12-23 09:43:23 +01:00
&.float-left {
float: left;
2018-05-24 14:13:53 +02:00
margin: 1rem 1rem 1rem 0;
2017-12-23 09:43:23 +01:00
}
&.float-right {
float: right;
2018-05-24 14:13:53 +02:00
margin: 1rem 0 1rem 1rem;
2017-12-23 09:43:23 +01:00
}
&.no-responsive {
display: initial;
2018-05-24 14:13:53 +02:00
height: initial;
max-width: initial;
2017-12-23 09:43:23 +01:00
}
&.no-border {
border: 0;
border-radius: 0;
}
}