Adding in content notification to look more browser like.

This commit is contained in:
Jonathan Kingston
2017-06-01 03:28:02 +01:00
parent 49e8afaf9a
commit 06d35e65ce
4 changed files with 93 additions and 10 deletions
+22
View File
@@ -0,0 +1,22 @@
.container-notification {
background: #33f70c;
color: #003f07;
display: block;
inline-size: 100vw;
offset-block-start: 0;
offset-inline-start: 0;
padding-block-end: 8px;
padding-block-start: 8px;
padding-inline-end: 8px;
padding-inline-start: 8px;
position: fixed;
transform: translateY(-100%);
transition: transform 0.3s cubic-bezier(0.07, 0.95, 0, 1) 0.3s;
z-index: 999999999999;
}
.container-notification img {
block-size: 16px;
inline-size: 16px;
margin-inline-end: 3px;
}