From 9dc106276414c197028abfa652cf74dd300fbeed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Mon, 5 Nov 2018 00:08:10 -0500 Subject: [PATCH] Improve links on alerts This is the colors straight from Bootstrap, however we cannot just switch to using Bootstrap for this as it expects links within alerts to be given the class `alert-link`, which the Markdown compiler obviously does not do. --- css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/style.css b/css/style.css index adcd7671..92ce11e3 100644 --- a/css/style.css +++ b/css/style.css @@ -396,16 +396,25 @@ img { background-color: #d9edf7; border-color: #bce8f1; } +.alert-info a { + color: #245269; +} .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } +.alert-warning a { + color: #66512c; +} .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } +.alert-danger a { + color: #843534; +} .alert p:last-child { margin-bottom: 0; }