custom error popups
This commit is contained in:
parent
7808a71e71
commit
233cdb8247
3 changed files with 133 additions and 77 deletions
15
style.css
15
style.css
|
@ -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{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue