From de9496386000ece74f1a28da9b87a042dbe2728b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Bozs=C3=B3?= Date: Wed, 24 Jun 2020 11:27:01 +0200 Subject: [PATCH] Update notes.css notes.css will not use custom font anymore. --- css/notes.css | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/css/notes.css b/css/notes.css index cf503e5..801914a 100644 --- a/css/notes.css +++ b/css/notes.css @@ -1,8 +1,6 @@ /**/ /*This stylesheet has styled boxes that are configured to use images*/ -@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); - .fbox { display: flex; flex-direction: row; @@ -118,7 +116,6 @@ p { } .info:before, .success:before, .warning:before, .error:before { - font-family:FontAwesome; font-style:normal; font-weight:400; speak:none; @@ -136,19 +133,19 @@ p { } .info:before { - content:"\f05a"; + content: 'Note:'; } .success:before { - content:'\f00c'; + content: 'Success'; } .warning:before { - content:'\f071'; + content: 'Warning'; } .error:before { - content:'\f057'; + content: 'Error'; } .info {