1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
@import url('https://fonts.googleapis.com/css?family=Fredoka+One');
div.sphinxsidebarwrapper p.logo {
margin-bottom: 1.5em;
}
h1,
h2,
h3,
.admonition-title {
font-family: 'Fredoka One', serif !important;
}
h1 {
color: #b83f3f !important;
}
h2 {
color: #3a76a8 !important;
}
h3 {
color: #266f2b !important;
}
div.sphinxsidebar h3 a {
color: #b79414 !important;
}
.admonition.warning,
.admonition.caution,
.admonition.tip {
color: white;
background-color: silver;
border: none;
border-radius: 6px;
padding: 20px 30px;
}
.admonition.tip {
background-color: #3a76a8;
}
.admonition.warning {
background-color: #b83f3f;
}
.admonition.caution {
background-color: #ffc238;
color: black;
}
.admonition.warning a {
color: red;
border-bottom: none;
text-decoration: underline;
}
.admonition.tip a {
color: #00b8e6;
border-bottom: none;
text-decoration: underline;
}
.admonition code {
background-color: rgba(255, 255, 255, 0.2) !important;
border-bottom: none !important;
}
ol li {
margin: 1em 0;
}
|