aboutsummaryrefslogtreecommitdiff
path: root/template/style.css
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-06-11 04:45:44 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-06-11 04:45:44 +0200
commit5d9882a2d613be98eb3fe0344a051ef6e7c4539f (patch)
tree5a9a5685502ce041b72e1bf2088f434bea4310e3 /template/style.css
parentc5db6138020d4d95227fcf4e3b62efc6ad8fa2bf (diff)
downloadmitjafelicijan.com-5d9882a2d613be98eb3fe0344a051ef6e7c4539f.tar.gz
Added dark and light version of alert icon
Diffstat (limited to 'template/style.css')
-rwxr-xr-xtemplate/style.css6
1 files changed, 5 insertions, 1 deletions
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 {
107 107
108blockquote:before { 108blockquote:before {
109 content: ' '; 109 content: ' ';
110 background-image: url('/assets/general/alert.svg'); 110 background-image: url('/assets/general/alert-light.svg');
111 background-size: 30px 30px; 111 background-size: 30px 30px;
112 height: 30px; 112 height: 30px;
113 width: 30px; 113 width: 30px;
@@ -415,4 +415,8 @@ audio {
415 code { 415 code {
416 color: #222 !important; 416 color: #222 !important;
417 } 417 }
418
419 blockquote:before {
420 background-image: url('/assets/general/alert-dark.svg');
421 }
418} 422}