Co-Authored-By: Ana Krivokapic <akrivoka@redhat.com> Co-Authored-By: Ben Nemec <bnemec@redhat.com> Co-Authored-By: Ben Nemec <cybertron@nemebean.com> Co-Authored-By: Brad P. Crochet <brad@redhat.com> Co-Authored-By: Crag Wolfe <cwolfe@redhat.com> Co-Authored-By: Dan Sneddon <dsneddon@redhat.com> Co-Authored-By: David Kranz <dkranz@redhat.com> Co-Authored-By: Derek Higgins <derekh@redhat.com> Co-Authored-By: Dimitri Savineau <dsavinea@redhat.com> Co-Authored-By: Dmitry Tantsur <divius.inside@gmail.com> Co-Authored-By: Dmitry Tantsur <dtantsur@redhat.com> Co-Authored-By: Dougal Matthews <dougal@redhat.com> Co-Authored-By: François Charlier <francois.charlier@redhat.com> Co-Authored-By: Giulio Fidente <gfidente@redhat.com> Co-Authored-By: Imre Farkas <ifarkas@redhat.com> Co-Authored-By: James Slagle <jslagle@redhat.com> Co-Authored-By: Jan Provaznik <jprovazn@redhat.com> Co-Authored-By: Jaromir Coufal <jcoufal@redhat.com> Co-Authored-By: Jay Dobies <jason.dobies@redhat.com> Co-Authored-By: Jeff Peeler <jpeeler@redhat.com> Co-Authored-By: Jiri Stransky <jistr@redhat.com> Co-Authored-By: Jiri Tomasek <jtomasek@redhat.com> Co-Authored-By: John Trowbridge <trown@redhat.com> Co-Authored-By: Lennart Regebro <regebro@gmail.com> Co-Authored-By: Lucas Alvares Gomes <lucasagomes@gmail.com> Co-Authored-By: Marek Aufart <maufart@redhat.com> Co-Authored-By: Ronelle Landy <rlandy@redhat.com> Co-Authored-By: Sasha Chuzhoy <sasha@redhat.com> Co-Authored-By: Sasha Chuzhoy <sashac88@hotmail.com> Co-Authored-By: Steven Hardy <shardy@redhat.com> Co-Authored-By: Zane Bitter <zbitter@redhat.com> Co-Authored-By: marios <marios@redhat.com>
130 lines
2.3 KiB
CSS
130 lines
2.3 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 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 */
|
|
.rhel {background: #fee;}
|
|
.portal {background-color: #ded;}
|
|
.satellite {background-color: #dee;}
|
|
.centos {background: #fef;}
|
|
.baremetal {background: #eef;}
|
|
.virtual {background: #efe;}
|
|
.ceph {background: #eff;}
|
|
|
|
/* 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 {
|
|
display: block;
|
|
font-size: 110%;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
line-height: 2.5;
|
|
position: relative;
|
|
cursor: pointer;
|
|
padding: 0 1.618em;
|
|
}
|
|
|
|
.trigger:after {
|
|
content: '▾';
|
|
display: block;
|
|
font-family: FontAwesome;
|
|
font-size: 70%;
|
|
position: absolute;
|
|
right: 1.618em;
|
|
top: 6px;
|
|
}
|
|
|
|
.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;
|
|
}
|