00536db091
Adds some notes to standalone deployment docs for fedora 28. Part of ci-squad task at [1] [1] https://tree.taiga.io/project/tripleo-ci-board/task/708 Change-Id: I0942dd73d13c24b8e53435ed6c75db8d2f0cabf2
142 lines
2.7 KiB
CSS
142 lines
2.7 KiB
CSS
/* CUSTOM CSS OVERRIDES GO HERE */
|
|
/* ============================ */
|
|
|
|
/* remove backgrounds */
|
|
#admonition_selector {
|
|
background: none !important;
|
|
color: black !important;
|
|
}
|
|
|
|
/* admonition selector */
|
|
#admonition_selector {
|
|
border-top: 0 none !important;
|
|
}
|
|
|
|
#admonition_selector .title {
|
|
color: rgba(0, 0, 0, 0.6) !important;
|
|
}
|
|
|
|
.trigger {
|
|
color: rgba(0, 0, 0, 0.7) !important;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
background: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.trigger:hover {
|
|
color: rgba(0, 0, 0, 0.9) !important;
|
|
}
|
|
|
|
/* NOTES, ADMONITTIONS AND TAGS */
|
|
.admonition {
|
|
font-size: 85%; /* match code size */
|
|
background: rgb(240, 240, 240);
|
|
color: rgba(0, 0, 0, 0.55);
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
padding: 0.5em 1em 0.75em 1em;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.admonition .admonition {
|
|
/* Don't keep shrinking the font for nested admonitions. */
|
|
font-size: 100%;
|
|
}
|
|
|
|
.admonition p {
|
|
font-size: inherit;
|
|
}
|
|
|
|
.admonition p.last {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.admonition p.first.admonition-title {
|
|
display: inline;
|
|
background: none;
|
|
font-weight: bold;
|
|
color: rgba(0, 0, 0, 0.75);
|
|
}
|
|
|
|
/* notes */
|
|
.rst-content .note {
|
|
background: rgb(240, 240, 240);
|
|
}
|
|
|
|
/* tags */
|
|
.fedora28 {background: #aee;}
|
|
.rhel {background: #fee;}
|
|
.portal {background-color: #ded;}
|
|
.satellite {background-color: #dee;}
|
|
.stable {background: #eed;}
|
|
.newton {background: #ede;}
|
|
.ocata {background: #edd;}
|
|
.pike {background: #dfb;}
|
|
.queens {background: #afd;}
|
|
.rocky {background: #aee;}
|
|
.centos {background: #fef;}
|
|
.baremetal {background: #eef;}
|
|
.virtual {background: #efe;}
|
|
.ceph {background: #eff;}
|
|
.mton {background: #ded;}
|
|
.ntoo {background: #edd;}
|
|
.otop {background: #dfb;}
|
|
.ptoq {background: #afd;}
|
|
.qtor {background: #aee;}
|
|
.validations {background: #fdd;}
|
|
.optional {background: #ffe;}
|
|
|
|
/* admonition selector */
|
|
#admonition_selector {
|
|
color: white;
|
|
font-size: 85%;
|
|
line-height: 1.4;
|
|
background: #2980b9;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.trigger {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
line-height: 2.5;
|
|
position: relative;
|
|
cursor: pointer;
|
|
padding: 0 1.618em;
|
|
}
|
|
|
|
.trigger:after {
|
|
content: '▾';
|
|
font-family: FontAwesome;
|
|
}
|
|
|
|
.trigger:hover {
|
|
color: white;
|
|
}
|
|
|
|
.content {
|
|
display: none;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 0.5em 1.618em;
|
|
}
|
|
|
|
.displayed .trigger:after {
|
|
content: '▴';
|
|
}
|
|
|
|
#admonition_selector .title {
|
|
color: rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
#admonition_selector ul {
|
|
margin-bottom: 0.75em;
|
|
}
|
|
|
|
#admonition_selector ul li {
|
|
display: block;
|
|
}
|
|
|
|
#admonition_selector label {
|
|
display: inline;
|
|
color: inherit;
|
|
text-decoration: underline dotted;
|
|
}
|