Team:EPF-Lausanne/Templates/printcss

From 2011.igem.org

/* Print-specific stuff:

I still haven't figured out what syntax works on various browsers. So there might be some duplication, and general mess in the css. Nerdy rhymes...

  • /

@media print {

   #left, #top-section { display: none }
   body { 
       
   }
   #right {
   }

}


/* -----------------------

        BODY STYLE
  ----------------------- */

h1 {

      font-family: 'Raleway', sans;
      font-weight: normal;
      font-size: 15pt;

}

h2 {

      font-family: 'Raleway', sans;
      font-weight: normal;
      font-size: 14pt;

}

h3 {

      font-family: 'Raleway', sans;
      font-weight: normal;
      font-size: 11pt;

}

h4 {

      font-weight: bold;
      font-size: 11pt;

}

p {

      font-size: 11pt;
      text-align: justify;

}

body {

      background: transparent;
      font-size: 11pt;
      font-family: Helvetica, Bitstream Vera Sans, Arial, sans-serif;

}

hr {

      width: 60%;
      margin: auto;

}

/* -----------------------

        TABLE STYLE 
      (in body text)
  ----------------------- */

table.center {

       margin: auto;

}

table.left {

       display: block;
       float: left;

}

table.right {

       display: block;
       float: right;

}

th {

       border-top: solid 1px black;
       border-bottom: solid 1px black;
       font-weight: bold;
       padding: 0.2em 1em;
       margin: 0px;

}

td {

       padding: 0em 1em;
       margin: 0px;

}

caption {

      font-style: italic;

}

/* -----------------------

        MENU STYLE
  ----------------------- */
  1. left {
       display: none;

}

  1. right {
       display: block;
       float: right;
       /* margin-left: 5cm; */

}

/* Wiki Hacks - START */ /* Author: Pieter van Boheemen */ /* Team: TU Delft */ /* Thanks guys - Bill Collins */ /* +1 - Douglas Watson */

.firstHeading { display: none; }

  1. globalWrapper {
   background-color: transparent;
   padding-bottom:0px;
   border: none;

}

  1. content {
   background-color: white;
   border:none;
   padding-bottom:none;
   margin-bottom:none;

}

  1. bodyContent {
   border: none;

}

  1. top-section {
   display: none;

}

  1. p-logo {
   height: 203px;
   overflow:hidden;
   border:none;
   display: none;

}

  1. p-logo img {
   display: none;

}

  1. search-controls {
   overflow:hidden;
   display:none;
   background: none;
   position: absolute;
   top: 100px;
   right: 40px;

}

.left-menu { display: none; }

.left-menu ul {

    display: none;

}

  1. menubar.right-menu {
   display: none;

}

.right-menu ul {

   border: none;

}

.right-menu a {

   background-color: transparent;

}

  1. menubar li a{
   color: white;
   background-color: transparent;

}

  1. menubar li a:hover {
   color:#73a631;
   text-decoration:underline;

}

  1. menubar li.selected a {
   color:#555555;

}

  1. catlinks {
   display: none;

}

  1. footer-box {
   display: none;

}

  1. footer {
   display: none;

}

  1. f-list a {
   color: #333;
   font-size: 10px;

}

  1. f-list a:hover {
   color: #666;

}

  1. footer ul {
   margin: 0;
   padding: 0;

}

  1. footer ul li {
   margin-top: 0;
   margin-bottom: 0;
   margin-left: 10px;
   margin-right: 10px;
   padding: 0;

}

/* Wiki Hacks - END */