2016-04-05 16:38:00 +00:00
|
|
|
/* STYLE for jannikbeyerstedt.de
|
|
|
|
* for specific template
|
|
|
|
*/
|
|
|
|
@import "../mainvariables";
|
|
|
|
|
2016-04-06 11:58:18 +00:00
|
|
|
// change main.scss behavior - inverted color style
|
2016-04-05 16:38:00 +00:00
|
|
|
body {
|
2016-04-10 20:42:23 +00:00
|
|
|
color: $color_font_inv;
|
2016-04-06 11:58:18 +00:00
|
|
|
}
|
2016-10-28 21:32:29 +00:00
|
|
|
div.site-wrap {
|
|
|
|
background-color: $color_bg_inv;
|
|
|
|
}
|
2016-04-06 11:58:18 +00:00
|
|
|
a {
|
2016-04-10 20:42:23 +00:00
|
|
|
color: $link_color_inv;
|
2016-04-06 11:58:18 +00:00
|
|
|
&:active, &:hover {
|
2016-04-10 20:42:23 +00:00
|
|
|
color: $link_active_inv;
|
2016-04-06 11:58:18 +00:00
|
|
|
}
|
2016-04-05 16:38:00 +00:00
|
|
|
}
|
2016-04-27 19:52:55 +00:00
|
|
|
main p {
|
|
|
|
a:visited {
|
|
|
|
color: $link_visited_inv;
|
|
|
|
}
|
|
|
|
}
|
2016-04-05 16:38:00 +00:00
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
nav {
|
2016-05-20 22:26:34 +00:00
|
|
|
ul.nav {
|
2016-04-05 16:38:00 +00:00
|
|
|
color: $nav_fgColor;
|
2016-05-20 22:26:34 +00:00
|
|
|
a.section:hover, a.section:focus {
|
|
|
|
border: none;
|
|
|
|
}
|
2016-04-05 16:38:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-24 21:02:37 +00:00
|
|
|
@include media-breakpoint-down(xs) {
|
2016-10-28 21:32:29 +00:00
|
|
|
label[for="nav-trigger"] {
|
|
|
|
// button color inverted
|
|
|
|
color: $nav_fgColor;
|
|
|
|
background-color: $color_bg_inv;
|
2016-04-24 21:02:37 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-06 11:58:18 +00:00
|
|
|
footer {
|
2016-04-10 20:42:23 +00:00
|
|
|
background-color: darken($color_bg_inv, 7%);
|
|
|
|
color: darken($color_font_inv, 10%);
|
2016-04-06 11:58:18 +00:00
|
|
|
}
|
2016-04-05 16:38:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
// additional css
|
|
|
|
main.photo {
|
|
|
|
.container {
|
2016-04-06 11:58:18 +00:00
|
|
|
|
2016-04-05 16:38:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
div.carousel {
|
|
|
|
max-width: 1300px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---- from boostrap ----
|
|
|
|
@import "images";
|
|
|
|
|
2017-08-18 23:35:03 +00:00
|
|
|
// @requires carousel.js, util.js
|
2016-04-05 16:38:00 +00:00
|
|
|
@import "carousel";
|
2016-12-16 22:41:53 +00:00
|
|
|
|
|
|
|
// fix responsiveness
|
|
|
|
.carousel-inner>.carousel-item>img {
|
|
|
|
width: 100%;
|
|
|
|
}
|