Difference between revisions of "Code Documentation"

Line 2: Line 2:
  
 
<html>
 
<html>
 +
 +
<style>
 +
  p.gray {
 +
color: #808284;
 +
}
 +
</style>
 +
 +
 
<!-- change the page title -->
 
<!-- change the page title -->
 
<div id="pageTitle">  
 
<div id="pageTitle">  
Line 21: Line 29:
 
<h3> General wrapping div of the page </h3>
 
<h3> General wrapping div of the page </h3>
  
<p> /* General wrap for the page*/ <br>
+
<p class="gray"> /* General wrap for the page*/ </p>
#contentWrap {  <br>  
+
<p> #contentWrap {  <br>  
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; width: 980px;<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; width: 980px;<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; height: auto;<br>
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; height: auto;<br>

Revision as of 19:00, 30 January 2015

CSS and HTML used in iGEM 2015

This page documents and explains the CSS and HTML used in the 2015 site.

General wrapping div of the page

/* General wrap for the page*/

#contentWrap {
      width: 980px;
      height: auto;
      margin-left: 20px;
      float:left;
      margin-right: auto;
      background-color: #ffffff;
}