Bottom feature updates
This commit is contained in:
parent
9b6712a9f2
commit
d79339a7fa
7 changed files with 72 additions and 4 deletions
|
@ -214,7 +214,8 @@ b, strong, label, th {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
color: #999;
|
color: #999;
|
||||||
text-align: center; }
|
text-align: center;
|
||||||
|
z-index: 1; }
|
||||||
#footer a:hover {
|
#footer a:hover {
|
||||||
color: #fff; }
|
color: #fff; }
|
||||||
#footer .totop {
|
#footer .totop {
|
||||||
|
@ -889,6 +890,30 @@ ul.pagination {
|
||||||
.modular .features.big .feature-content p {
|
.modular .features.big .feature-content p {
|
||||||
padding: 0; }
|
padding: 0; }
|
||||||
|
|
||||||
|
.modular .bottom {
|
||||||
|
text-align: center; }
|
||||||
|
.modular .bottom:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
clear: both; }
|
||||||
|
.modular .bottom h2 {
|
||||||
|
padding-top: 3rem;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 100%;
|
||||||
|
color: #656161; }
|
||||||
|
.modular .bottom p {
|
||||||
|
margin: 1rem 0; }
|
||||||
|
@media only all and (max-width: 47.938em) {
|
||||||
|
.modular .bottom p {
|
||||||
|
font-size: 1rem; } }
|
||||||
|
.modular .bottom .button {
|
||||||
|
background-color: #87b672;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
font-size: 1rem; }
|
||||||
|
|
||||||
.callout {
|
.callout {
|
||||||
background: #EEEEEE;
|
background: #EEEEEE;
|
||||||
padding: 2rem 0.938rem;
|
padding: 2rem 0.938rem;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -9,6 +9,7 @@
|
||||||
@extend .padding-horiz;
|
@extend .padding-horiz;
|
||||||
color: #999;
|
color: #999;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
@import "showcase";
|
@import "showcase";
|
||||||
@import "features";
|
@import "features";
|
||||||
|
@import "bottom";
|
||||||
@import "text";
|
@import "text";
|
||||||
|
|
||||||
.modular {
|
.modular {
|
||||||
|
|
34
scss/template/modular/_bottom.scss
Normal file
34
scss/template/modular/_bottom.scss
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
// Modular Showcase styling
|
||||||
|
.modular {
|
||||||
|
.bottom {
|
||||||
|
text-align: center;
|
||||||
|
@include clearfix;
|
||||||
|
|
||||||
|
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 {
|
||||||
|
background-color: $core-accent;
|
||||||
|
color: $header-text;
|
||||||
|
font-family: $font-family-header;
|
||||||
|
border-radius: $border-radius;
|
||||||
|
box-shadow: none;
|
||||||
|
font-size: $core-font-size;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
7
templates/modular/bottom.html.twig
Normal file
7
templates/modular/bottom.html.twig
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<div class="modular-row bottom {{ page.header.class}}">
|
||||||
|
{{ content }}
|
||||||
|
{% for button in page.header.buttons %}
|
||||||
|
<a class="button{% if button.primary %} primary{% endif %}" href="{{ button.url }}">{{ button.text }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in a new issue