mirror of https://github.com/docker/docs.git
Merge pull request #2070 from mstanleyjones/move-css
Put temp styles in the right place
This commit is contained in:
commit
28d269bc37
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|
|
40
css/temp.css
40
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue