ALPHA 3.0.1e

This commit is contained in:
TheGamecraft
2018-07-18 21:24:34 -04:00
parent 4fa17f4136
commit 636c17441e
22 changed files with 1272 additions and 92 deletions

View File

@@ -2247,20 +2247,61 @@ header .form-inline {
display: flex;
}
.calendar-container{
width: 14%;
height: 7.5rem;
text-align: center;
vertical-align: middle !important;
border: none !important;
border: solid 1px #d9d9d9 !important;
padding: 0px !important;
}
.calendar-date{
float: left;
margin-top: -2rem;
margin-left: 1rem;
}
.calendar-text{
float: right;
margin-bottom: -2rem;
margin-right: 1rem;
}
.btn-calendar{
height: 100px;
width: 100px;
border-radius: 50%;
background-color: #949CA0;
padding: 36px 0;
height: 7.5rem;
margin: 0px;
}
.btn-calendar:hover{
background-color: #f2f2f26e;
}
.thead-dark {
color: #fff;
background-color: #212529;
border-color: #32383e;
text-align: center;
}
.loader{
text-align: center;
}
.loader-bg{
width: 70px;
margin-top: 50px;
margin-bottom: 50px;
}
.loader-spinner {
position: absolute;
border: 16px solid #f3f3f3;
border-top: 16px solid #272c33;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
left: 0px;
right: 0px;
margin-left: auto;
margin-right: auto;
top: 44px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}