157 lines
2.8 KiB
CSS
157 lines
2.8 KiB
CSS
.form-style-5{
|
|
display: block;
|
|
margin: 0px auto;
|
|
max-width: 200px;
|
|
padding: 5px;
|
|
}
|
|
.form-style-5 input[type="date"]{
|
|
font-family: Georgia, "Times New Roman", Times, serif;
|
|
background: rgba(255,255,255,.1);
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
outline: 0;
|
|
padding: 8px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
background-color: #e8eeef;
|
|
color:#8a97a0;
|
|
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
|
|
box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-style-5 input[type="date"]:focus{
|
|
background: #d2d9dd;
|
|
}
|
|
|
|
.form-style-5 input[type="submit"],
|
|
.form-style-5 button {
|
|
position: relative;
|
|
display: block;
|
|
padding: 8px;
|
|
color: #FFF;
|
|
margin: 0 auto;
|
|
background: #1f4e85;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
font-style: normal;
|
|
width: 100%;
|
|
border: 1px solid #388994;
|
|
border-width: 1px 1px 3px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-style-5 input[type="submit"]:hover,
|
|
.form-style-5 button:hover {
|
|
background: #6a9ee2;
|
|
}
|
|
|
|
h1{
|
|
font-size: 30px;
|
|
color: #000;
|
|
text-transform: uppercase;
|
|
font-weight: 300;
|
|
font-family: New Century Schoolbook, TeX Gyre Schola, serif;
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
table{
|
|
width:100%;
|
|
table-layout: fixed;
|
|
}
|
|
.tbl-header{
|
|
background-color: rgba(255,255,255,0.3);
|
|
}
|
|
.tbl-content{
|
|
height: 585px;
|
|
overflow-x:auto;
|
|
margin-top: 0px;
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
}
|
|
th{
|
|
padding: 20px 15px;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
color: #000;
|
|
text-transform: uppercase;
|
|
}
|
|
td{
|
|
padding: 15px;
|
|
text-align: center;
|
|
vertical-align:middle;
|
|
font-weight: 300;
|
|
font-size: 13px;
|
|
color: #fff;
|
|
border-bottom: solid 1px rgba(255,255,255,0.5);
|
|
}
|
|
.error {
|
|
color: red;
|
|
text-align: center;
|
|
}
|
|
section {
|
|
margin: 0px 50px;
|
|
overflow-x:hidden;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
section {
|
|
margin: 0px 4px;
|
|
}
|
|
h1 {
|
|
font-size: 19px;
|
|
}
|
|
th {
|
|
font-size: 11px;
|
|
padding: 5px 2px;
|
|
}
|
|
.form-style-5 input[type="submit"],
|
|
.form-style-5 input[type="date"],
|
|
.form-style-5 button {
|
|
padding: 5px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
.slideInRight {
|
|
animation-name: slideInRight;
|
|
}
|
|
.slideInDown {
|
|
animation-name: slideInDown;
|
|
}
|
|
.animated {
|
|
animation-duration: 1s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
@keyframes slideInRight {
|
|
from {
|
|
transform: translate3d(100%, 0, 0);
|
|
visibility: visible;
|
|
}
|
|
|
|
to {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
@keyframes slideInDown {
|
|
from {
|
|
transform: translate3d(0, 100%, 0);
|
|
visibility: visible;
|
|
}
|
|
|
|
to {
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
} |