From d3a9e3fe6770adca2e887993d2ae7b0f96e83725 Mon Sep 17 00:00:00 2001 From: J S Date: Mon, 13 Nov 2023 20:04:51 -0500 Subject: [PATCH] feat[css]: Added css for warning --- static/css/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 79014cd..43569e2 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -60,3 +60,24 @@ code.has-jax { border: none !important; font-size: 100%; } + +alert { + position: relative; + padding: 0rem 1rem; + margin-bottom: 1rem; + border: 1px solid transparent; +} + +.alert-warning { + border-style: solid; + border-color: #ed6a5a; + border-width: 0 0 0 4px; + padding-left: 1rem +} + +.alert-heading { + font-family: sans-serif; + font-size: 1.5rem; + color: #ed6a5a; + weight: bold; +}