From 5d9882a2d613be98eb3fe0344a051ef6e7c4539f Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 11 Jun 2022 04:45:44 +0200 Subject: Added dark and light version of alert icon --- assets/general/alert-dark.svg | 99 ++++++++++++++++++++++++++++++++++++++++++ assets/general/alert-light.svg | 99 ++++++++++++++++++++++++++++++++++++++++++ assets/general/alert.svg | 99 ------------------------------------------ template/_meta.html | 2 +- template/style.css | 6 ++- 5 files changed, 204 insertions(+), 101 deletions(-) create mode 100644 assets/general/alert-dark.svg create mode 100644 assets/general/alert-light.svg delete mode 100644 assets/general/alert.svg diff --git a/assets/general/alert-dark.svg b/assets/general/alert-dark.svg new file mode 100644 index 0000000..d453564 --- /dev/null +++ b/assets/general/alert-dark.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/general/alert-light.svg b/assets/general/alert-light.svg new file mode 100644 index 0000000..86658ec --- /dev/null +++ b/assets/general/alert-light.svg @@ -0,0 +1,99 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/general/alert.svg b/assets/general/alert.svg deleted file mode 100644 index 86658ec..0000000 --- a/assets/general/alert.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/template/_meta.html b/template/_meta.html index 6310d49..23275a0 100755 --- a/template/_meta.html +++ b/template/_meta.html @@ -5,7 +5,7 @@ - + diff --git a/template/style.css b/template/style.css index 126c7b3..0aae48b 100755 --- a/template/style.css +++ b/template/style.css @@ -107,7 +107,7 @@ blockquote { blockquote:before { content: ' '; - background-image: url('/assets/general/alert.svg'); + background-image: url('/assets/general/alert-light.svg'); background-size: 30px 30px; height: 30px; width: 30px; @@ -415,4 +415,8 @@ audio { code { color: #222 !important; } + + blockquote:before { + background-image: url('/assets/general/alert-dark.svg'); + } } -- cgit v1.2.3