🎨 Colorize the "important" admonition blocks

This commit is contained in:
Sviatoslav Sydorenko 2020-09-05 23:51:11 +02:00
förälder 3301284810
incheckning 13962cd6ad
Ingen känd nyckel hittad för denna signaturen i databasen
GPG-nyckel ID: 9345E8FEA89CA455
3 ändrade filer med 10 tillägg och 2 borttagningar

Visa fil

@ -22,7 +22,7 @@ exclude noxfile.py
recursive-include src/pip/_vendor *.pem
recursive-include src/pip/_vendor py.typed
recursive-include docs Makefile *.rst *.py *.bat
recursive-include docs *.css *.rst *.py
exclude src/pip/_vendor/six
exclude src/pip/_vendor/six/moves

Visa fil

@ -0,0 +1,8 @@
.admonition.important {
background-color: rgb(219, 250, 244);
border: 1px solid rgb(26, 188, 156);
}
.admonition.important>.admonition-title {
color: rgb(26, 188, 156);
}

Visa fil

@ -181,7 +181,7 @@ html_theme_options = {
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = []
html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.