aboutsummaryrefslogtreecommitdiff
path: root/src/styles/style.css
diff options
context:
space:
mode:
authorIndrajith K L2017-12-19 14:21:29 +0530
committerIndrajith K L2017-12-19 14:21:29 +0530
commitc0eb82f55a40f64025800c0ad2b6a05290576337 (patch)
treecce2a386dea2508de10d6a6bb58f492329173434 /src/styles/style.css
parentab0d224a293dfb2e6f2f70fd1f8180f6957c15be (diff)
downloadvanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.tar.gz
vanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.tar.bz2
vanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.zip
Now supports
* type arguments, * positional parameters and * html as content * Documentation updates
Diffstat (limited to 'src/styles/style.css')
-rw-r--r--src/styles/style.css50
1 files changed, 48 insertions, 2 deletions
diff --git a/src/styles/style.css b/src/styles/style.css
index b941e56..45e869e 100644
--- a/src/styles/style.css
+++ b/src/styles/style.css
@@ -10,11 +10,25 @@
box-sizing: border-box;
}
-.notif-mainContainer.topRight{
+.notif-mainContainer.top-right{
top: 8px;
right: 8px;
}
+.notif-mainContainer.bottom-right{
+ bottom: 8px;
+ right: 8px;
+}
+
+.notif-mainContainer.top-left{
+ top: 8px;
+ left: 8px;
+}
+.notif-mainContainer.bottom-left{
+ bottom: 8px;
+ left: 8px;
+}
+
.notif-inner {
display: flex;
flex-direction: column;
@@ -22,16 +36,48 @@
.vanilla-yo-notification{
width: 250px;
- background: #58a758;
color: white;
position: relative;
cursor: pointer;
padding: 8px;
margin-bottom: 12px;
display: flex;
+ border-radius: 10px;
+ -webkit-animation-duration: 500ms;animation-duration: 500ms;
+}
+
+.vanilla-yo-notification.error {
+ background: #e74c3c;
+}
+
+.vanilla-yo-notification.warning {
+ background: #f39c12;
+}
+
+.vanilla-yo-notification.success {
+ background: #2ecc71;
+}
+
+
+
+@-webkit-keyframes fadeOut {
+ 0% {opacity: 1;}
+ 100% {opacity: 0;}
+ }
+
+ @keyframes fadeOut {
+ 0% {opacity: 1;}
+ 100% {opacity: 0;}
+ }
+
+.close {
+ -webkit-animation-name: fadeOut;
+ animation-name: fadeOut;
}
+
+
.notification_header{
font-size: 15px;
font-weight: bold