print.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /** * Print stylesheet * @version 1.0 * @lastmodified 14-07-2021 */
  2. @page {
  3. margin: 0;
  4. size: auto;
  5. }
  6. @media print {
  7. * {
  8. overflow: hidden !important;
  9. }
  10. .page {
  11. page-break-after:always;
  12. }
  13. @page {
  14. size: A4 portrait;
  15. margin: 0.2cm 0.3cm 0.4cm 0.4cm !important;
  16. }
  17. html {
  18. height:100%;
  19. max-height: 100%;
  20. padding: 0 !important;
  21. line-height: 1.1;
  22. overflow: hidden;
  23. background-color: #fff;
  24. color:black;
  25. }
  26. body {
  27. height:100%;
  28. max-height: 100%;
  29. padding: 0 !important;
  30. line-height: 1.1;
  31. overflow: hidden;
  32. background-color: #fff;
  33. color:black;
  34. min-width: 992px!important;
  35. }
  36. .container {
  37. overflow: scroll;
  38. display: block;
  39. }
  40. input::-webkit-calendar-picker-indicator {
  41. visibility: hidden;
  42. }
  43. datalist {
  44. display: none;
  45. }
  46. .form-control {
  47. border: 1px solid #d7d7d7;
  48. border-radius: 0;
  49. }
  50. .container {
  51. min-width: 992px!important;
  52. }
  53. .form-check label {
  54. font-size: x-small;
  55. }
  56. .architect{
  57. color: black;
  58. }
  59. ::placeholder {
  60. color: transparent !important;
  61. }
  62. .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 {
  63. float: left;
  64. }
  65. .col-md-1 {
  66. width: 8%;
  67. }
  68. .col-md-2 {
  69. width: 16%;
  70. }
  71. .col-md-3 {
  72. width: 25%;
  73. }
  74. .col-md-4 {
  75. width: 33%;
  76. }
  77. .col-md-5 {
  78. width: 42%;
  79. }
  80. .col-md-6 {
  81. width: 50%;
  82. }
  83. .col-md-7 {
  84. width: 58%;
  85. }
  86. .col-md-8 {
  87. width: 66%;
  88. }
  89. .col-md-9 {
  90. width: 75%;
  91. }
  92. .col-md-10 {
  93. width: 83%;
  94. }
  95. .col-md-11 {
  96. width: 92%;
  97. }
  98. .col-md-12 {
  99. width: 100%;
  100. }
  101. }