Showcaseprint_CSS

This is the CSS for the printview of any given page.

This page contains only the sections that pertain to the Contact page.

    1| @charset "utf-8";
    2| /* CSS Document */
    3| 
    4| /*body information*/
    5| body {
    6|     background-color:#FFFFFF;
    7|     font: "Lucida Sans Unicode", "Lucida Grande", Verdana, sans-serif;
    8|     font-size:100.01%;
    9|     ine-height:1.5em; /* 16px*1.5em=24px */
  10|  }
  11| 
  12| .hide {
  13|     display:none;
  14|     visibility:hidden;
  15|     }
  16| 
  17| .center {
  18|      text-align:center;
  19|     }
  20| 
  21| /*Print specific*/
  22| .webview{
  23|      display:none;
  24|      visibility:hidden;
  25|  }
  26| 
  27| .printview {
  28|      display:inline;
  29|      visibility:visible;
  30|       }
  31| 
  32| /*font-size*/
  33| h1 {
  34|     font-size:20pt;
  35|  }
  36| 
  37| .colorh1 {
  38|     color:#BA2F39;
  39|      }
  40| h2 {
  41|     font-size:18pt;
  42|  }
  43| 
  44| h3 {
  45|     font-size:16pt;
  46|     }
  47| 
  48| h4 {
  49|     font-size:14pt;
  50|     font-style:italic;
  51|     }
  52| 
  53| p {
  54|  font-size:12pt;
  55|  }
  56| 
  57| a {
  58|     color:black;
  59|     text-decoration:none;
  60|  }
  61| 
  62| /*generic border*/
  63| .border {
  64|         border: 1px solid black;
  65|         margin: 0 4% 0 4%;
  66|         text-align:center;
  67|         width: 795px;
  68|      }
  69| 
  70| .error {
  71|         margin: 0px auto 0px 20%;
  72|         padding: 2px;
  73|         width: 400px;
  74|         text-align:center;
  75|         border:1px ridge black;
  76|         }
  77| 
  78| /*Container*/
  79| #container {
  80|      margin: 0 0 0 0;
  81|      max-width: 99%;
  82|      border: 0px none;
  83|      padding: 0px;
  84|      }
  85| 
  86| /*masterhead*/
  87| #masterhead {
  88|      display:none;
  89|      visibility:hidden;
  90|      }
  91| 
  92| /*navigation*/
  93| #navigation {
  94|      display:none;
  95|      visibility:hidden;
  96|      }

118| /*content*/
119| #content {
120|      margin: 0 0 5px 0;
121|      padding: 2px;
122|      border: 0px none;
123|      }

132| /*footer*/
133| #footer {
134|      display:none;
135|      visibility:hidden;
136|      }