2015-01-16 12:59:43 +01:00
|
|
|
// Modular Showcase styling
|
|
|
|
.modular {
|
|
|
|
.bottom {
|
|
|
|
text-align: center;
|
|
|
|
@include clearfix;
|
2015-01-16 16:49:43 +01:00
|
|
|
padding-bottom: 4rem;
|
2015-01-16 12:59:43 +01:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
padding-top: 3rem;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 100%;
|
|
|
|
color: $light-gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
|
|
|
@include breakpoint(mobile-only) {
|
|
|
|
font-size: $core-font-size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2015-01-21 10:03:15 +01:00
|
|
|
@extend .default-animation;
|
2015-01-16 12:59:43 +01:00
|
|
|
background-color: $core-accent;
|
|
|
|
color: $header-text;
|
|
|
|
font-family: $font-family-header;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
box-shadow: none;
|
|
|
|
font-size: $core-font-size;
|
2015-01-21 10:03:15 +01:00
|
|
|
border: 0 none;
|
|
|
|
&:hover {
|
|
|
|
background-color: darken($core-accent, 20%);
|
|
|
|
}
|
2015-01-16 12:59:43 +01:00
|
|
|
}
|
2015-01-26 11:57:05 +01:00
|
|
|
&.borderbottom {
|
|
|
|
hr {
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
}
|
2015-01-16 12:59:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|