Team:Tec-Monterrey

From 2011.igem.org

(Difference between revisions)
Line 39: Line 39:
     background-color: #FFFFFF;
     background-color: #FFFFFF;
     color: #002BB8;
     color: #002BB8;
-
     padding: 0 15px 0 0;
+
     padding: 0 10px 0 0;
     text-decoration:none
     text-decoration:none
}
}
Line 56: Line 56:
     background-color: #FFFFFF;
     background-color: #FFFFFF;
     color: #002BB8;
     color: #002BB8;
-
     padding: 0 15px 0 0;
+
     padding: 0 10px 0 0;
     text-decoration:none
     text-decoration:none
}
}
Line 90: Line 90:
/* ~~ Element/tag selectors ~~ */
/* ~~ Element/tag selectors ~~ */
-
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
+
ul, ol, dl {
padding: 0;
padding: 0;
margin: 0;
margin: 0;
}
}
h1, h2, h3, h4, h5, h6, p {
h1, h2, h3, h4, h5, h6, p {
-
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
+
margin-top: 0;
padding-right: 10px;
padding-right: 10px;
-
padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
+
padding-left: 10px;  
}
}
-
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
+
a img {  
border: none;
border: none;
}
}
-
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
+
 
a:link {
a:link {
-
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
+
color: #F90;
color: #F90;
}
}
Line 112: Line 112:
text-decoration: underline;
text-decoration: underline;
}
}
-
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
+
a:hover, a:active, a:focus {  
text-decoration: none;
text-decoration: none;
}
}
-
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
+
 
.container {
.container {
width: 90%;
width: 90%;
-
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
+
max-width: 1260px;
-
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
+
min-width: 780px;
background: #FFF;
background: #FFF;
-
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
+
margin: 0 auto;
-
overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
+
overflow: hidden;  
}
}
-
/* ~~ These are the columns for the layout. ~~
 
-
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
 
-
 
-
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
 
-
 
-
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
 
-
 
-
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
 
-
 
-
*/
 
.sidebar1 {
.sidebar1 {
float: left;
float: left;
Line 146: Line 136:
.content {
.content {
-
padding: 10px 0;
+
padding: 5px 0;
width: 80%;
width: 80%;
float: left;
float: left;
Line 152: Line 142:
}
}
-
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
+
 
.content ul, .content ol {  
.content ul, .content ol {  
padding: 0 15px 15px 40px;
padding: 0 15px 15px 40px;
-
/* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
 
}
}
-
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
+
 
ul.nav {
ul.nav {
-
list-style: none; /* this removes the list marker */
+
list-style: none;  
-
border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
+
border-top: 0px solid #FFF;  
-
margin-bottom: 15px; /* this creates the space between the navigation on the content below */
+
margin-bottom: 15px;
}
}
ul.nav li {
ul.nav li {
-
border-bottom: 1px solid #FFF; /* this creates the button separation */
+
border-bottom: 1px solid #FFF;  
}
}
-
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
+
ul.nav a, ul.nav a:visited {  
 +
 
padding: 5px 5px 5px 15px;
padding: 5px 5px 5px 15px;
-
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
+
display: block;  
text-decoration: none;
text-decoration: none;
background: #FFF;
background: #FFF;
-
color:#013469;;
+
color:#013469;;
}
}
Line 181: Line 171:
}
}
-
/* ~~miscellaneous float/clear classes~~ */
+
 
-
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
+
.fltrt {   
float: right;
float: right;
margin-left: 8px;
margin-left: 8px;
}
}
-
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
+
.fltlft {  
float: left;
float: left;
margin-right: 8px;
margin-right: 8px;
}
}
-
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
+
.clearfloat {  
clear:both;
clear:both;
height:0;
height:0;
Line 248: Line 238:
</style><!--[if lte IE 7]>
</style><!--[if lte IE 7]>
<style>
<style>
-
.content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
+
.content { margin-right: -1px; }
-
ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
+
ul.nav a { zoom: 1; }   
</style>
</style>
<![endif]-->
<![endif]-->
Line 486: Line 476:
     <ul class="nav">
     <ul class="nav">
       <p>&nbsp;</p>
       <p>&nbsp;</p>
-
       <!--this is our menu! D: hurrfff durrff herpa derpa-->
+
       <!--this is our menu! D: -->
       <li>
       <li>
       <div class="panelcollapsed">
       <div class="panelcollapsed">
Line 492: Line 482:
     <div class="panelcontent" style="">
     <div class="panelcontent" style="">
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">home</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">home</a></p>
-
<p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectdescription">abstract</a></p>
+
    <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectdescription">abstract</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">videos</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">videos</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">step by step</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">step by step</a></p>
Line 612: Line 602:
   background:url(https://static.igem.org/mediawiki/igem.org/e/ec/Topquicklink.png);
   background:url(https://static.igem.org/mediawiki/igem.org/e/ec/Topquicklink.png);
   background-repeat:no-repeat;
   background-repeat:no-repeat;
-
        background-position:top;
+
                background-position:top;
   background-color:#FFF;">
   background-color:#FFF;">
 +
     <p>SUMMER 2011</p>
     <p>SUMMER 2011</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
Line 643: Line 634:
    
    
    
    
-
   <!--uncomment this part in sub pages so you may edit properly-->
+
   </div>
-
  <!--
+
-
  <h1>Instructions</h1>
+
-
<p>Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the liquid layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - <a href="http://www.adobe.com/go/adc_css_layouts">http://www.adobe.com/go/adc_css_layouts</a>.</p>
+
-
    <h2>Clearing</h2>
+
-
    <p>Because all the columns are floated, this layout uses overflow:hidden on the .container. This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If you have a large element that protrudes outside the .container, it will appear to be cut off. You also won't be able to use negative margins or absolute positioning with negative values to pull elements outside the .container or they will also won't display outside the .container.</p>
+
-
    <p>If you need to use these properties, you'll need to use a different clearing method. The most reliable will be to add a &lt;br class=&quot;clearfloat&quot; /&gt; or &lt;div  class=&quot;clearfloat&quot;&gt;&lt;/div&gt; after your final floated column (but before the .container closes). This will have the same clearing effect.</p>
+
-
    <h3>Footer</h3>
+
-
    <p>Adding a footer following the columns, yet still inside the .container, will cause this overflow:hidden clearing method to fail. You can place a .footer into a second .container outside the first one with no detrimental effects. The simplest choice may be to start with a layout containing headers and footers and remove the header to utilize the clearing methods in that layout type.</p>
+
-
    <h4>Internet Explorer Conditional Comments</h4>
+
-
    <p>These liquid layouts contain an Internet Explorer Conditional Comment (IECC) to correct two issues. </p>
+
-
    <ol>
+
-
      <li>Browsers are inconsistent in the way they round div sizes in percent-based layouts. If the browser must render a number like 144.5px or 564.5px, they have to round it to the nearest whole number. Safari and Opera round down, Internet Explorer rounds up and Firefox rounds one column up and one down filling the container completely. These rounding issues can cause inconsistencies in some layouts. In this IECC there is a 1px negative margin to fix IE. You may move it to any of the columns (and on either the left or right) to suit your layout needs.</li>
+
-
      <li>The zoom property was added to the anchor within the navigation list since, in some cases, extra white space will be rendered in IE6 and IE7. Zoom gives IE its proprietary hasLayout property to fix this issue.</li>
+
-
    </ol>
+
-
    <h4>Backgrounds</h4>
+
-
    <p>By nature, the background color on any div will only show for the length of the content. This means if you're using a background color or border to create the look of a side column, it won't extend all the way to the footer but will stop when the content ends. If the .content div will always contain more content, you can place a border on the .content div to divide it from the column.end .content </p>-->
+
-
</div>
+
-
  <!-- end .container --></div>
+
</div></div></body></html>
</div></div></body></html>

Revision as of 05:38, 14 July 2011

wiki

iGEM

 

 

Hello and welcome to our webpage!

We made a few changes since your last visit, do feel free to browse! :D