diff --git a/library-css/library.scss b/library-css/library.scss index daccc37..3439433 100644 --- a/library-css/library.scss +++ b/library-css/library.scss @@ -11,3 +11,4 @@ @import "login.scss"; @import "text.scss"; @import "button.scss"; +@import "notification.scss"; diff --git a/library-css/notification.scss b/library-css/notification.scss new file mode 100644 index 0000000..2f56df4 --- /dev/null +++ b/library-css/notification.scss @@ -0,0 +1,19 @@ +.uk-notification-message { + border-radius: 3px; + font-size: 14px; + padding: 20px; +} + +.uk-notification-message.uk-notification-message-success { + background-color: #e0f0d5; + color: #669a59; +} + +.uk-notification-message.uk-notification-message-danger { + background-color: #f2dede; + color: #b25654; +} + +.uk-notification-close.uk-close, .uk-notification-close.uk-close:hover { + color: #1a1a1a; +}