Skip to content

Commit 28d269b

Browse files
Merge pull request docker#2070 from mstanleyjones/move-css
Put temp styles in the right place
2 parents 68a9696 + f55c28d commit 28d269b

File tree

2 files changed

+40
-25
lines changed

2 files changed

+40
-25
lines changed

css/style.css

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ h5,
5656
h6 {
5757
color: #254356;
5858
font-family: Geomanist Book;
59-
clear: both;
6059
}
6160

6261
h1 {
@@ -405,14 +404,6 @@ a.button.outline-btn {
405404
margin: 0;
406405
}
407406

408-
.darkblue-btn {
409-
background-color: #0C5176;
410-
padding: 10px;
411-
margin-top: 20px;
412-
margin-bottom: 20px;
413-
margin-right: 20px;
414-
}
415-
416407
.outline-btn:hover,
417408
.primary-btn:hover,
418409
.secondary-btn:hover {
@@ -423,22 +414,6 @@ a.button.outline-btn {
423414
color: #1488C6;
424415
}
425416

426-
/*
427-
*
428-
* tables *********************************************************************
429-
*
430-
*/
431-
432-
433-
th, td.th {
434-
font-weight: bold;
435-
}
436-
437-
.content table {
438-
margin-top: 20px;
439-
margin-bottom: 20px;
440-
}
441-
442417

443418

444419
/*

css/temp.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,43 @@ input.gsc-search-button-v2 {
9393
min-width: 13px;
9494
margin-top: 2px;
9595
}
96+
97+
/* CTA button for downloads and stuff */
98+
99+
.darkblue-btn,
100+
.cta-btn {
101+
background-color: #1488C6;
102+
padding: 12px 15px 10px 15px;
103+
margin: 20px 20px 20px 0;
104+
display: inline-block;
105+
}
106+
107+
/* In case you want a row of them */
108+
109+
.darkblue-btn.right,
110+
.cta-btn.right {
111+
margin: 20px 0 20px 20px;
112+
}
113+
114+
/* Make table headings bold, give tables some breathing room */
115+
116+
th, td.th {
117+
font-weight: bold;
118+
}
119+
120+
.content table {
121+
margin-top: 20px;
122+
margin-bottom: 20px;
123+
}
124+
125+
/* Without this, if the CTA button is used right before a header,
126+
the header is on the same line */
127+
128+
h1,
129+
h2,
130+
h3,
131+
h4,
132+
h5,
133+
h6 {
134+
clear: both;
135+
}

0 commit comments

Comments
 (0)