papercss/src/content/_images.scss

31 lines
467 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();
2020-08-10 01:12:48 +02:00
@include color('border-color', 'primary');
border-style: solid;
border-width: 2px;
2018-05-24 14:13:53 +02:00
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;
}
}