Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.04 KB | None | 0 0
  1. @page {
  2.     size: letter portrait;
  3.  
  4.     @frame header_frame {        
  5.         -pdf-frame-content: header_content;
  6.         left: 0px; width: 100%; top: 0px; height: 45px;
  7.         -pdf-frame-border: 1;
  8.     }
  9.      @frame kpi-container_frame {
  10.         -pdf-frame-content: kpi-container;
  11.         left: 35px; width: 100px; top: 50px; height: 300px;
  12.         -pdf-frame-border: 1;
  13.     }
  14.     @frame overview_frame {
  15.         -pdf-frame-content: overview;
  16.         left: 145px; width: 640px; top: 50px; height: 600px;
  17.         -pdf-frame-border: 1;
  18.     }
  19.     /*@frame campaign-summary_frame {
  20.         -pdf-frame-content: campaign-summary;
  21.         left: 35px; width: 450px; top: 220px; height: 300px;
  22.         -pdf-frame-border: 1;
  23.     }
  24.     @frame chart-container_frame {
  25.         -pdf-frame-content: chart-container;
  26.         left: 340px; width: 220px; top: 220px; height: 300px;
  27.         -pdf-frame-border: 1;
  28.     }
  29.     @frame department-container_frame {
  30.         -pdf-frame-content: department-container;
  31.         left: 35px; width: 521px; top: 475px; height: 250px;
  32.         -pdf-frame-border: 1;
  33.     } */
  34.     @frame footer_frame {
  35.         -pdf-frame-content: footer_content;
  36.         left: 5px; width: 100%; top: 700px; height: 42px;
  37.         -pdf-frame-border: 1;
  38.     }
  39. }
  40. html{
  41.     font-family: Helvetica;
  42.     display: block;
  43. }
  44. #header_content{
  45.     width:100%;
  46.     height:100%;
  47.     background-color: #000000;
  48. }
  49. h1{
  50.     display: block;
  51.     font-weight:bold;
  52.     font-size: 18pt;
  53.     font-family: Helvetica;
  54.     color: #ffffff;
  55.     width: 100%;
  56.     background-color: #000000;
  57.     text-align: left;
  58.     padding: 3px;
  59. }
  60. h2{
  61.     display: block;
  62.     font-size: 10.5pt;
  63.     font-family: Helvetica;
  64.     color: #000000;
  65.     font-weight: bold;
  66. }
  67.  
  68. p{
  69.     display: block;
  70.     font-size: 10.5pt;
  71.     font-family: Helvetica;
  72.     color: #000000;
  73.     font-weight: normal;
  74. }
  75.  
  76. td{
  77.     font-size: 10.5pt;
  78.     font-family: Helvetica;
  79.     color: #000000;
  80.     font-weight: normal;
  81. }
  82.  
  83. #kpi-container{
  84.     background-color:#00a7e1;
  85.     text-align: left;
  86.     padding: 20px;
  87.     width: 100%;
  88.     height:100%;
  89. }
  90. #kpi-container > h2{
  91.     font-size: 10.5pt;
  92.     color: #ffffff;
  93. }
  94.  
  95. .kpi-num{
  96.     margin-bottom: 0;
  97.     padding-bottom: 0;
  98.     font-size: 18pt;
  99.     font-weight: bold;
  100. }
  101.  
  102. .kpi-title{
  103.     margin-top: 0;
  104.     padding-top: 0;
  105.     font-size: 12pt;
  106. }
  107.  
  108. .kpi{
  109.     text-align: left;
  110. }
  111.  
  112. tr,
  113. th,
  114. td {
  115.     text-align: center;
  116.     vertical-align: middle;
  117.     padding: 2px;
  118.     font-size: 10px;
  119. }
  120.  
  121. th {
  122.     text-align: center;
  123.     font-weight: bold;
  124.     padding: 10px;
  125.     background-color: red;
  126. }
  127. ul {
  128.     margin-left: 1.5em;
  129.     list-style-type: disc;
  130. }
  131. li{
  132.     display: block;
  133. }
  134. strong{
  135.     font-weight: bold;
  136. }
  137. /*
  138. #legend{
  139.     color:blue;
  140.     table-layout: fixed;
  141.     width: 640px;
  142.     border-width: 4;
  143. }
  144.  
  145. table{
  146.     border-color: blueviolet;
  147.     color:blue;
  148.     table-layout: auto;
  149.     width: 640px;
  150.     border-width: 4;
  151. }
  152.  
  153. td{
  154.     border-color: crimson;
  155.     border-width: 5px;
  156.     color:red;
  157. } */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement