Team:Groningen/CSS3

From 2013.igem.org

Revision as of 10:32, 19 July 2013 by Ejpostema (Talk | contribs)

.table{

   width:auto;
   padding:5px;
   height:auto;
   display:table;     

}

/* Code for the characteristics for the tiles */

.tile{

   height:200px;  
   width:200px; 
   float:left;
   margin:0 5px 0 0;
   padding:2px;

}

/* Code for the characteristics for the tiles with text (made a seperate one so this one does not doe anything if you hover over*/

.tileText{

   height:200px;  
   width:200px; 
   float:left;
   margin:0 5px 0 0;
   padding:2px;

}

/* Color-code for the tiles */

.color1{

   background:#DAA520;

}

color2{
   background:#CD0000; 

}

.color3{

   background:#4682B4;

}

.color3{

   background-color: #2E8B57;

}

/* Color for the mouse hover */

.selection{

   background-color: #483D8B;

}


/* tile below is not used atm, makes the tile larger */

.tileLargo{

   width:210px;

}