2016-05-22 18:28:01 +01:00
|
|
|
@import "variables"; // Import variables before anything else
|
|
|
|
|
2016-05-15 17:42:35 +01:00
|
|
|
|
2016-05-27 09:50:46 +01:00
|
|
|
/* @group Fonts */
|
2016-05-17 13:46:23 +01:00
|
|
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700,300,300italic,400italic,700italic");
|
|
|
|
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,700,300,300italic,400italic,700italic");
|
2016-05-15 17:42:35 +01:00
|
|
|
/* @end Fonts */
|
|
|
|
|
2016-05-16 18:20:16 +01:00
|
|
|
|
2016-05-15 17:42:35 +01:00
|
|
|
/* @group Libraries */
|
|
|
|
@import "node_modules/bootstrap-sass/assets/stylesheets/_bootstrap";
|
2016-05-16 18:20:16 +01:00
|
|
|
@import "node_modules/animate.css/animate";
|
2016-05-15 17:42:35 +01:00
|
|
|
|
2016-05-16 21:46:16 +01:00
|
|
|
$fa-font-path: "../fonts";
|
2016-05-20 08:50:36 +01:00
|
|
|
@import "node_modules/font-awesome/scss/font-awesome";
|
2016-05-15 17:42:35 +01:00
|
|
|
/* @end Libraries */
|
|
|
|
|
|
|
|
|
2016-05-16 18:20:16 +01:00
|
|
|
/* @group Other Imports */
|
2016-05-15 17:42:35 +01:00
|
|
|
@import "creative/creative";
|
2016-05-23 17:38:13 +01:00
|
|
|
@import "pygment";
|
2016-05-15 17:42:35 +01:00
|
|
|
@import "homepage";
|
2016-05-21 20:35:59 +01:00
|
|
|
@import "footer";
|
2016-05-26 22:22:32 +01:00
|
|
|
@import "library-overrides";
|
2016-05-29 17:30:48 +01:00
|
|
|
@import "functional";
|
2016-05-26 22:22:32 +01:00
|
|
|
/* @end Other Imports */
|
2016-05-24 09:07:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
hr.wide {
|
|
|
|
width: 100%;
|
|
|
|
max-width: initial;
|
|
|
|
}
|
2016-05-26 22:22:32 +01:00
|
|
|
|
|
|
|
p a {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2016-05-27 09:50:46 +01:00
|
|
|
|
|
|
|
.btn i {
|
|
|
|
margin: 0 3px;
|
|
|
|
}
|
2016-05-29 23:23:55 +01:00
|
|
|
|
|
|
|
.image {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
2016-07-14 16:12:23 +01:00
|
|
|
|
|
|
|
.container > img,
|
2016-08-25 21:52:46 +01:00
|
|
|
.container p > img,
|
|
|
|
.row > div > img {
|
2016-07-14 16:12:23 +01:00
|
|
|
margin: 10px 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-07-14 16:52:37 +01:00
|
|
|
|
|
|
|
.portfolio-box {
|
|
|
|
background-color: $brand-grey-dark;
|
|
|
|
max-width: initial;
|
|
|
|
min-height: 300px;
|
|
|
|
|
|
|
|
&.show .portfolio-box-caption {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portfolio-box-caption {
|
|
|
|
background-color: transparentize($brand-orange, 0.2);
|
|
|
|
}
|
|
|
|
}
|
2016-08-06 14:35:55 +01:00
|
|
|
|
|
|
|
.category-item {
|
|
|
|
padding: 1px 0;
|
|
|
|
}
|
2016-08-25 21:52:46 +01:00
|
|
|
|
|
|
|
#header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&.image .section-heading {
|
|
|
|
@extend .text-shadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-height: $screen-xs-max) {
|
|
|
|
height: 40vh;
|
|
|
|
}
|
|
|
|
}
|
2016-08-27 21:13:07 +01:00
|
|
|
|
|
|
|
.highlight.ansi-up {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|