diff options
author | Indrajith K L | 2017-12-18 17:02:00 +0530 |
---|---|---|
committer | Indrajith K L | 2017-12-18 17:02:00 +0530 |
commit | 22e4705a9cde1ec45fac032721af6d47ef60566b (patch) | |
tree | b2da1d0f49c725e3032ed1ad14b2118d2c3ca482 /src/styles/style.css | |
download | vanilla-yo-notification-22e4705a9cde1ec45fac032721af6d47ef60566b.tar.gz vanilla-yo-notification-22e4705a9cde1ec45fac032721af6d47ef60566b.tar.bz2 vanilla-yo-notification-22e4705a9cde1ec45fac032721af6d47ef60566b.zip |
initial commit
Diffstat (limited to 'src/styles/style.css')
-rw-r--r-- | src/styles/style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/styles/style.css b/src/styles/style.css new file mode 100644 index 0000000..b941e56 --- /dev/null +++ b/src/styles/style.css @@ -0,0 +1,38 @@ + + +.notif-mainContainer { + z-index: 999; + position: fixed; + width: 350px; + max-width: 98%; + font-family: "Segoe UI","Tahoma","Calibri","Verdana",sans-serif; + color: #999; + box-sizing: border-box; +} + +.notif-mainContainer.topRight{ + top: 8px; + right: 8px; +} + +.notif-inner { + display: flex; + flex-direction: column; +} + +.vanilla-yo-notification{ + width: 250px; + background: #58a758; + color: white; + position: relative; + cursor: pointer; + padding: 8px; + margin-bottom: 12px; + display: flex; +} + + +.notification_header{ + font-size: 15px; + font-weight: bold +}
\ No newline at end of file |