/*
 * CSS hacks and small modification for my Sphinx website
 * :copyright: Copyright 2013-2016 Lilian Besson
 * :license: GPLv3, see LICENSE for details.
 */


/* Colors and text decoration.
 For example, :black:`text in black` or :blink:`text blinking` in rST. */

.black {
    color: black !important;
}

.gray {
    color: gray !important;
}

.grey {
    color: gray !important;
}

.silver {
    color: silver !important;
}

.white {
    color: white !important;
}

.maroon {
    color: maroon !important;
}

.red {
    color: red !important;
}

.magenta {
    color: magenta !important;
}

.fuchsia {
    color: fuchsia !important;
}

.pink {
    color: pink !important;
}

.orange {
    color: orange !important;
}

.yellow {
    color: yellow !important;
}

.lime {
    color: lime !important;
}

.green {
    color: green !important;
}

.olive {
    color: olive !important;
}

.teal {
    color: teal !important;
}

.cyan {
    color: cyan !important;
}

.aqua {
    color: aqua !important;
}

.blue {
    color: blue !important;
}

.navy {
    color: navy !important;
}

.purple {
    color: purple !important;
}

.huge {
    font-size: xx-large;
}

.big {
    font-size: x-large;
}

.small{
    font-size: small;
}

.tiny{
    font-size: smaller;
}


.large {
    font-size: large;
}

.larger {
    font-size: larger;
}

.x-large{
    font-size: x-large;
}

.xx-large{
    font-size: xx-large;
}

.small {
    font-size: small;
}

.smaller {
    font-size: smaller;
}

.x-small{
    font-size: x-small;
}

.xx-small{
    font-size: xx-small;
}

.font-bolder{
    font-weight: bolder;
}

.font-lighter{
    font-weight: lighter;
}