Team:Rutgers/style2

From 2013.igem.org

(Difference between revisions)
 
(3 intermediate revisions not shown)
Line 1: Line 1:
-
/*
 
-
Design by Free CSS Templates
 
-
http://www.freecsstemplates.org
 
-
Released for free under a Creative Commons Attribution 2.5 License
 
-
*/
 
-
 
-
 
/* Removing wiki-like stuff */
/* Removing wiki-like stuff */
/****************************/
/****************************/
Line 11: Line 4:
     display:none;}
     display:none;}
-
/* Redesigning the topmenu */
+
 
-
/***************************/
+
/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */
-
body {
+
 
-
    margin: 10px 0 0 0;
+
/* IE10 Consumer Preview */  
-
    padding: 0;}
+
background-image: -ms-linear-gradient(top right, #DEDEDE 0%, #685880 100%);
-
#top-section {
+
 
-
    width: 965px;
+
/* Mozilla Firefox */
-
    height: 0;
+
background-image: -moz-linear-gradient(top right, #DEDEDE 0%, #685880 100%);
-
    margin: 0 auto;
+
 
-
    padding: 0;
+
/* Opera */
-
    border: none;}
+
background-image: -o-linear-gradient(top right, #DEDEDE 0%, #685880 100%);
-
#menubar {
+
 
-
    font-size: 65%;
+
/* Webkit (Safari/Chrome 10) */
-
    top: -14px;}
+
background-image: -webkit-gradient(linear, right top, left bottom, color-stop(0, #DEDEDE), color-stop(1, #685880));
-
.left-menu:hover {
+
 
-
    background-color: transparent;}
+
/* Webkit (Chrome 11+) */
-
#menubar li a {
+
background-image: -webkit-linear-gradient(top right, #DEDEDE 0%, #685880 100%);
-
    background-color: transparent;}
+
 
-
#menubar:hover {
+
/* W3C Markup, IE10 Release Preview */
-
    color: white;}
+
background-image: linear-gradient(to bottom left, #DEDEDE 0%, #685880 100%);
-
#menubar li a {
+
-
    color: transparent;}
+
-
#menubar:hover li a {
+
-
    color: white;}
+
-
#menubar > ul > li:last-child {
+
-
    display:none;}
+

Latest revision as of 13:32, 12 August 2013

/* Removing wiki-like stuff */ /****************************/

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


/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */

/* IE10 Consumer Preview */ background-image: -ms-linear-gradient(top right, #DEDEDE 0%, #685880 100%);

/* Mozilla Firefox */ background-image: -moz-linear-gradient(top right, #DEDEDE 0%, #685880 100%);

/* Opera */ background-image: -o-linear-gradient(top right, #DEDEDE 0%, #685880 100%);

/* Webkit (Safari/Chrome 10) */ background-image: -webkit-gradient(linear, right top, left bottom, color-stop(0, #DEDEDE), color-stop(1, #685880));

/* Webkit (Chrome 11+) */ background-image: -webkit-linear-gradient(top right, #DEDEDE 0%, #685880 100%);

/* W3C Markup, IE10 Release Preview */ background-image: linear-gradient(to bottom left, #DEDEDE 0%, #685880 100%);