add custom css to change admonitions background colors

This commit is contained in:
Sam
2019-07-21 10:24:45 +02:00
parent 211b4079e8
commit db531a140b
22 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,14 @@
.alert-danger {
background-color: #d9534f;
border-color: transparent;
}
.alert-info {
background-color: #29abe0;
border-color: transparent;
}
.alert-warning {
background-color: #f47c3c;
border-color: transparent;
}

View File

@ -17,6 +17,11 @@ import sphinx_bootstrap_theme
sys.path.insert(0, os.path.abspath('../../fittrackee_api'))
def setup(app):
app.add_stylesheet("custom.css")
# -- Project information -----------------------------------------------------
project = 'FitTrackee'