| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /** * Print stylesheet * @version 1.0 * @lastmodified 14-07-2021 */
- @page {
- margin: 0;
- size: auto;
- }
- @media print {
- * {
- overflow: hidden !important;
- }
- .page {
- page-break-after:always;
- }
- @page {
- size: A4 portrait;
- margin: 0.2cm 0.3cm 0.4cm 0.4cm !important;
- }
- html {
- height:100%;
- max-height: 100%;
- padding: 0 !important;
- line-height: 1.1;
- overflow: hidden;
- background-color: #fff;
- color:black;
- }
- body {
- height:100%;
- max-height: 100%;
- padding: 0 !important;
- line-height: 1.1;
- overflow: hidden;
- background-color: #fff;
- color:black;
- min-width: 992px!important;
- }
- .container {
- overflow: scroll;
- display: block;
- }
- input::-webkit-calendar-picker-indicator {
- visibility: hidden;
- }
- datalist {
- display: none;
- }
- .form-control {
- border: 1px solid #d7d7d7;
- border-radius: 0;
- }
- .container {
- min-width: 992px!important;
- }
- .form-check label {
- font-size: x-small;
- }
- .architect{
- color: black;
- }
- ::placeholder {
- color: transparent !important;
- }
-
-
- .col-md-1,.col-md-2,.col-md-3,.col-md-4, .col-md-5,.col-md-6,.col-md-7,.col-md-8, .col-md-9,.col-md-10,.col-md-11,.col-md-12 {
- float: left;
- }
- .col-md-1 {
- width: 8%;
- }
- .col-md-2 {
- width: 16%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-4 {
- width: 33%;
- }
- .col-md-5 {
- width: 42%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-7 {
- width: 58%;
- }
- .col-md-8 {
- width: 66%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-10 {
- width: 83%;
- }
- .col-md-11 {
- width: 92%;
- }
- .col-md-12 {
- width: 100%;
- }
- }
-
|