151 lines
3.0 KiB
CSS
151 lines
3.0 KiB
CSS
html {
|
|
font-family: sans-serif;
|
|
line-height: 1.15;
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.container-fluid {
|
|
position: relative;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.row {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
margin-right: -15px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
.col {
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: 1px;
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.table-fac-1,
|
|
.table-fac-1 > td {
|
|
background-color: #ffeeba;
|
|
}
|
|
|
|
.table-fac-2,
|
|
.table-fac-2 > td {
|
|
background-color: #bac9ff;
|
|
}
|
|
|
|
.table-fac-3,
|
|
.table-fac-3 > td {
|
|
background-color: #f5c6cb;
|
|
}
|
|
|
|
.table {
|
|
border-collapse: collapse !important;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.table td,
|
|
.table th {
|
|
padding: 0.75rem;
|
|
vertical-align: top;
|
|
border-top: 1px solid #eceeef;
|
|
text-align: center;
|
|
}
|
|
.table thead th {
|
|
vertical-align: bottom;
|
|
border-bottom: 2px solid #eceeef;
|
|
}
|
|
.table tbody + tbody {
|
|
border-top: 2px solid #eceeef;
|
|
}
|
|
.table .table {
|
|
background-color: #fff;
|
|
}
|
|
|
|
|
|
label {
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation;
|
|
display: inline-block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.form-control {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.5rem 0.75rem;
|
|
font-size: 1rem;
|
|
line-height: 1.25;
|
|
color: #464a4c;
|
|
background-color: #fff;
|
|
background-image: none;
|
|
-webkit-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
border-radius: 0.25rem;
|
|
-webkit-transition: border-color ease-in-out 0.15s,
|
|
-webkit-box-shadow ease-in-out 0.15s;
|
|
transition: border-color ease-in-out 0.15s,
|
|
-webkit-box-shadow ease-in-out 0.15s;
|
|
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
|
|
-webkit-box-shadow ease-in-out 0.15s;
|
|
}
|
|
|
|
.form-control:focus {
|
|
color: #464a4c;
|
|
background-color: #fff;
|
|
border-color: #5cb3fd;
|
|
outline: 0;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
line-height: 1.25;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
border: 1px solid transparent;
|
|
padding: 0.5rem 1rem;
|
|
font-size: 1rem;
|
|
border-radius: 0.25rem;
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
-o-transition: all 0.2s ease-in-out;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
.btn:focus,
|
|
.btn:hover {
|
|
text-decoration: none;
|
|
-webkit-box-shadow: 0 0 0 4px rgba(216, 63, 2, 0.25);
|
|
box-shadow: 0 0 0 4px rgba(216, 63, 2, 0.25);
|
|
}
|
|
|
|
.btn:focus {
|
|
outline: 0;
|
|
-webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
|
box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
|
|
} |