1
0
Fork 0

custom error popups

This commit is contained in:
haselkern 2017-01-07 21:46:31 +01:00
parent 7808a71e71
commit 233cdb8247
3 changed files with 133 additions and 77 deletions

View file

@ -34,7 +34,7 @@ p{
a.card{
cursor: pointer;
}
.screen{
#wrapper{
max-width: 600px;
margin: 1em auto;
}
@ -43,6 +43,19 @@ a.card{
box-shadow: none;
}
/* error popup */
.error{
z-index: 2;
position: fixed;
top: -100px;
transition: 200ms;
color: #B71C1C;
font-weight: bold;
}
.error.active{
top: 0;
}
/* Main Screen */
#user-info{