Move footer to pages.js and add it to the contact page

This commit is contained in:
Caleb James DeLisle
2017-08-01 14:17:02 +02:00
parent 490e2b4d0a
commit 27aa1886b1
5 changed files with 88 additions and 170 deletions

View File

@@ -1,3 +1,8 @@
@colortheme_link-color: #0275D8;
@colortheme_link-color-visited: #005999;
@colortheme_info-background: #fafafa;
@colortheme_pad-bg: #1c4fa0;
@colortheme_pad-color: #fff;

View File

@@ -1,12 +1,17 @@
@import (once) "./colortheme.less";
@infopages_infobar-height: 64px;
// Basic setup for info pages, this should be used at the global level
.infopages_main () {
min-height: 100vh;
background-color: #FAFAFA;
background-color: @colortheme_info-background;
a {
color: #FFF;
color: @colortheme_link-color;
&:visited {
color: @colortheme_link-color-visited;
}
//opacity: 0.8;
//transition: opacity 0.2s;
}
@@ -28,7 +33,7 @@
.infopages_link () {
text-decoration: none;
color: #000;
color: #0275D8;
cursor: pointer;
display: inline-flex;
&:hover {