diff --git a/css/style.css b/css/style.css index 3c1c22e8be..1abc3f8b35 100644 --- a/css/style.css +++ b/css/style.css @@ -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; -} - /* diff --git a/css/temp.css b/css/temp.css index 0648e6819e..0088b8e46f 100644 --- a/css/temp.css +++ b/css/temp.css @@ -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; +}