serve analytics and copy based on deployment environment

This commit is contained in:
John Hess 2022-03-14 17:47:54 -05:00
parent 932c39987f
commit 3c781f6e72
10 changed files with 86 additions and 34 deletions

View file

@ -64,6 +64,7 @@ body {
&:hover {
background-color: lighten($royal-blue, 5%);
}
margin-bottom: 10px;
}
@ -77,6 +78,13 @@ body {
}
}
.caption {
color: $dark-gray;
font-family: $text-font-family;
font-size: 16px;
margin-top: 8px;
}
.text-black {
color: $black;
}
@ -94,6 +102,9 @@ body {
.mb-2 {
margin-bottom: 24px;
}
.mt-2 {
margin-top: 24px;
}
// Arrows classes

View file

@ -3,6 +3,7 @@
// -------------------------
.main-area {
background-color: $gold;
min-height: 100vh;
}
// -------------------------
@ -92,6 +93,7 @@ a:active {
.content-area {
&-wrapper {
margin-top: 30px;
min-height: calc(100vh - 202px); // take up space above the footer
.content-title {
font-size: 42px;
font-weight: 800;
@ -114,7 +116,7 @@ a:active {
img {
display: block;
margin: 0 auto;
max-width: 100%;
max-width: 70%;
}
}
}