43 lines
525 B
SCSS
43 lines
525 B
SCSS
/* STYLE for jannikbeyerstedt.de
|
|
* for specific template
|
|
*/
|
|
@import "../mainvariables";
|
|
|
|
// change main.scss behavior
|
|
body {
|
|
|
|
}
|
|
|
|
|
|
// additional css
|
|
main.webdesign {
|
|
.container {
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
|
|
.featurette {
|
|
|
|
h2 {
|
|
font-family: inherit;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
img {
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
@include media-breakpoint-down(xs) {
|
|
img {
|
|
margin: 0 auto;
|
|
max-height: 200px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// ---- from boostrap ----
|
|
@import "images";
|