Team:Hendrix Arkansas/css/main.css

From 2014.igem.org

(Difference between revisions)
Line 98: Line 98:
div.notebook{
div.notebook{
 +
    display: table;
     border-collapse: collapse;
     border-collapse: collapse;
     width: 86%;
     width: 86%;
Line 105: Line 106:
}
}
div.notebook_day{
div.notebook_day{
 +
    display: table-row;
}
}
span.notebook_cell{
span.notebook_cell{
 +
    display: table-cell;
     border: 2 px solid blue;
     border: 2 px solid blue;
}
}

Revision as of 21:17, 11 October 2014

/* Removing wiki stuff */ /********************/

  1. contentSub, #search-controls, .firstHeading, #footer-box, #catlinks, #p-logo {
   display:none;

}

/* Basic styling */ /********************/ p, td, tr {

   font-family: Arial;
   font-color: #000000;

} body {

   margin: 0px;
   padding: 0px;

}

/* Main page */ /********************/

  1. project_title {
   float: center;
   font-size: 6em;
   text-align: center;

}

  1. project_summary {
   float: right;
   clear: both;
   width: 47%;
   padding: 1.5%;

}

  1. home_pictures {
   float: left;
   clear: both;
   width: 47%;
   padding: 1.5%;

}

/* Team page */ /********************/

  1. team_info {
   margin-left: auto;
   margin-right: auto;
   clear: both;
   border: 2px solid black;
   margin-top: 3%;
   margin-bottom: 3%;
   padding: 1%;
   width: 72%;
   text-align: justify;

}

  1. team_pic {
   margin-left: auto;
   margin-right: auto;
   clear: both;
   margin-top: 3%;

}

.member_left {

   float: right;
   clear: right;
   border: 2px solid black;
   margin: 2% 8% 2% 2%;
   padding: 1%;
   width: 64%;
   text-align: left;

}

.member_right {

   float: left;
   clear: left;
   border: 2px solid black;
   margin: 2% 2% 2% 8%;
   padding: 1%;
   width: 64%;
   text-align: right;

}

.member_left_pic {

   float: left;
   clear: left;
   border: 2px;
   margin: 2% 2% 2% 8%;
   padding: 1%;

}

.member_right_pic {

   float: right;
   clear: right;
   border: 2px;
   margin: 2% 8% 2% 2%;
   padding: 1%;

}

/* Notebook */ /********************/

div.notebook{

   display: table;
   border-collapse: collapse;
   width: 86%;
   margin-left: 7%;
   margin-right: 7%;
   border: 2px solid black;

} div.notebook_day{

   display: table-row;

} span.notebook_cell{

   display: table-cell;
   border: 2 px solid blue;

}