File size: 1,361 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
body, html {
font-size: 0.9rem;
background: #f2f3f7
}
body, .form-control {
font-size: 0.9rem
}
body,
html,
#root,
.App {
min-height: 100vh
}
.btn {
font-size: 0.9rem;
font-weight: 500;
padding: 0.66rem;
border-radius: 0.5rem;
box-shadow: 0 .1rem .1rem rgba(0,0,0,.05)!important
}
.App-link {
color: #61dafb;
}
.btn-light {
border-color: #dedede
}
.btn-light:hover {
border-color: #dedede;
background-color: #f3f3f3
}
.shadow {
box-shadow: 0 .1rem .1rem rgba(0,0,0,.05)!important
}
.modal-content,
.card {
overflow: hidden;
border-radius: 0.756rem
}
hr {
opacity: 0.1
}
.table th {
border-top: 1px solid #0000001a;
border-bottom: 1px solid #0000001a;
border-bottom-color: #0000001a!important
}
.table td {
text-align: left;
}
.table tr th:first-child,
.table tr td:first-child {
padding-left: 0
}
.table tr th:last-child,
.table tr td:last-child {
padding-right: 0
}
.form-control {
background: #f5f7f9;
font-weight: 400;
padding: .5rem .75rem;
border: none
}
.form-control:hover {
background: #f5f7f9;
}
.form-control::placeholder,
.form-control::-ms-input-placeholder,
.form-control:-ms-input-placeholder {
color: #9fa8b0
}
.form-control:focus {
background: #f5f7f9;
}
#invoiceCapture {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
|