Merge pull request #2070 from mstanleyjones/move-css

Put temp styles in the right place
This commit is contained in:
John Mulhausen 2017-03-02 14:08:44 -08:00 committed by GitHub
commit 28d269bc37
2 changed files with 40 additions and 25 deletions

View File

@ -56,7 +56,6 @@ h5,
h6 {
color: #254356;
font-family: Geomanist Book;
clear: both;
}
h1 {
@ -405,14 +404,6 @@ a.button.outline-btn {
margin: 0;
}
.darkblue-btn {
background-color: #0C5176;
padding: 10px;
margin-top: 20px;
margin-bottom: 20px;
margin-right: 20px;
}
.outline-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
@ -423,22 +414,6 @@ a.button.outline-btn {
color: #1488C6;
}
/*
*
* tables *********************************************************************
*
*/
th, td.th {
font-weight: bold;
}
.content table {
margin-top: 20px;
margin-bottom: 20px;
}
/*

View File

@ -93,3 +93,43 @@ input.gsc-search-button-v2 {
min-width: 13px;
margin-top: 2px;
}
/* CTA button for downloads and stuff */
.darkblue-btn,
.cta-btn {
background-color: #1488C6;
padding: 12px 15px 10px 15px;
margin: 20px 20px 20px 0;
display: inline-block;
}
/* In case you want a row of them */
.darkblue-btn.right,
.cta-btn.right {
margin: 20px 0 20px 20px;
}
/* Make table headings bold, give tables some breathing room */
th, td.th {
font-weight: bold;
}
.content table {
margin-top: 20px;
margin-bottom: 20px;
}
/* Without this, if the CTA button is used right before a header,
the header is on the same line */
h1,
h2,
h3,
h4,
h5,
h6 {
clear: both;
}