fixed login/out bug

This commit is contained in:
10001shh
2018-08-24 12:16:39 -05:00
parent ae88f8013c
commit 9b7763af4b
3 changed files with 28 additions and 11 deletions

View File

@@ -22,6 +22,7 @@
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
@@ -37,6 +38,7 @@
padding-left: 5px;
margin: 5px 0px 5px 0px;
}
.description {
padding: 5px;
font-size: 15px;
@@ -58,7 +60,7 @@
#chart {
min-width: auto;
max-width: 800px;
max-width: 100%;
height: 250px;
margin: 0 auto;
z-index: 1;
@@ -67,13 +69,11 @@
.card {
transition: 0.3s;
margin-bottom: 10px;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
0 2px 10px 0 rgba(0, 0, 0, 0.12);
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.card:hover {
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2),
0 4px 20px 0 rgba(0, 0, 0, 0.19);
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}
.cardcontainer {
@@ -164,7 +164,6 @@
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@@ -211,4 +210,4 @@
bottom: 0;
opacity: 0;
}
}
}