summaryrefslogtreecommitdiff
path: root/public/css/_sass/elements/notification.sass
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-07-11 11:09:49 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-07-11 11:09:49 -0400
commite43e4e1e3257939bbbc4b004e94497503c8ef481 (patch)
tree467825ed78ae6a6476b61f7d76be1361e1fd935a /public/css/_sass/elements/notification.sass
parentd2f203e54ed8eac2aac9712691a5b4892cdf5ffc (diff)
parent66e98b7125c87706782b8247b8e0329473dbeb5a (diff)
downloadcobalt-site-e43e4e1e3257939bbbc4b004e94497503c8ef481.tar.xz
cobalt-site-e43e4e1e3257939bbbc4b004e94497503c8ef481.zip
merged
Diffstat (limited to 'public/css/_sass/elements/notification.sass')
-rw-r--r--public/css/_sass/elements/notification.sass36
1 files changed, 0 insertions, 36 deletions
diff --git a/public/css/_sass/elements/notification.sass b/public/css/_sass/elements/notification.sass
deleted file mode 100644
index 24122e7..0000000
--- a/public/css/_sass/elements/notification.sass
+++ /dev/null
@@ -1,36 +0,0 @@
-$notification-background-color: $background !default
-$notification-code-background-color: $scheme-main !default
-$notification-radius: $radius !default
-$notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default
-
-.notification
- @extend %block
- background-color: $notification-background-color
- border-radius: $notification-radius
- padding: $notification-padding
- position: relative
- a:not(.button):not(.dropdown-item)
- color: currentColor
- text-decoration: underline
- strong
- color: currentColor
- code,
- pre
- background: $notification-code-background-color
- pre code
- background: transparent
- & > .delete
- position: absolute
- right: 0.5rem
- top: 0.5rem
- .title,
- .subtitle,
- .content
- color: currentColor
- // Colors
- @each $name, $pair in $colors
- $color: nth($pair, 1)
- $color-invert: nth($pair, 2)
- &.is-#{$name}
- background-color: $color
- color: $color-invert