Contact section updates
This commit is contained in:
parent
f2b1cfc264
commit
215251fa78
6 changed files with 32 additions and 5 deletions
|
@ -1158,8 +1158,13 @@ ul.pagination {
|
|||
border: 0 none; }
|
||||
.modular .bottom .button:hover {
|
||||
background-color: #558042; }
|
||||
.modular .bottom.borderbottom {
|
||||
padding-bottom: 0; }
|
||||
.modular .bottom.borderbottom hr {
|
||||
padding-top: 2rem; }
|
||||
padding-top: 3rem; }
|
||||
|
||||
.contact h4 {
|
||||
text-align: left; }
|
||||
|
||||
.callout {
|
||||
background: #EEEEEE;
|
||||
|
@ -1285,6 +1290,8 @@ ul.pagination {
|
|||
float: left; }
|
||||
.logo h3 a {
|
||||
color: #9A9898; }
|
||||
.logo h4 {
|
||||
text-align: left; }
|
||||
.logo ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,7 @@
|
|||
@import "showcase";
|
||||
@import "features";
|
||||
@import "bottom";
|
||||
@import "contact";
|
||||
@import "text";
|
||||
|
||||
.logo {
|
||||
|
@ -15,6 +16,9 @@
|
|||
color: $core-text;
|
||||
}
|
||||
}
|
||||
h4 {
|
||||
text-align: left;
|
||||
}
|
||||
border-bottom: 1px solid $body-border;
|
||||
|
||||
ul {
|
||||
|
|
|
@ -35,8 +35,9 @@
|
|||
}
|
||||
&.borderbottom {
|
||||
hr {
|
||||
padding-top: 2rem;
|
||||
padding-top: 3rem;
|
||||
}
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
6
scss/template/modular/_contact.scss
Normal file
6
scss/template/modular/_contact.scss
Normal file
|
@ -0,0 +1,6 @@
|
|||
// Modular Showcase styling
|
||||
.contact {
|
||||
h4 {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
9
templates/modular/contact.html.twig
Normal file
9
templates/modular/contact.html.twig
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="modular-row contact {{ page.header.class }}">
|
||||
<div class="g-grid pure-g-r">
|
||||
<div id="listing" class="g-block pure-u-2-3">
|
||||
</div>
|
||||
<div id="sidebar" class="g-block size-1-3 pure-u-1-3">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in a new issue