Difference between revisions of "Team:Vilnius-Lithuania/Vilnius15 wiki.css"

Line 68: Line 68:
 
     display: none;
 
     display: none;
 
}
 
}
 
/* Start menu style ===================================================== */
 
 
/* Menu-bg and spacing*/
 
 
div#menu {
 
    height: 60px;
 
    padding: 5px 0 17px;
 
}
 
 
div#menu ul {
 
    margin: 0;
 
    padding: 0;
 
    list-style: none;
 
}
 
 
/* Position menu and set font color */
 
 
div#menu > ul {
 
    width: 960px;
 
    height: 60px;
 
    margin: 0 auto;
 
    color: #411c03;
 
}
 
 
/* Position menu elements and set font */
 
 
div#menu > ul > li {
 
    float: left;
 
    position: relative;
 
    width: 137px;
 
    height: 44px;
 
    padding: 8px 0 8px;
 
    text-align: center;
 
}
 
 
div#menu > ul > li > a {
 
    display: block;
 
    width: 137px;
 
    height: 44px;
 
    color: inherit;
 
}
 
 
/* Hover effect */
 
 
div#menu > ul > li > a:hover {
 
    background-color: #F9F9F9;
 
}
 
 
div#menu > ul > li > a:hover {
 
    text-decoration: none;
 
}
 
 
/* Style and hide submenu */
 
 
div#menu > ul > li > ul {
 
    display: none;
 
    z-index: 9998;
 
    position: absolute;
 
    top: 60px;
 
    width: 135px;
 
    border-right: solid 1px black;
 
    border-left: solid 1px black;
 
}
 
 
/* Style submenu elements */
 
 
div#menu > ul > li > ul > li {
 
    padding: 0 10px;
 
    border-bottom: solid 1px black;
 
    text-align: left;
 
    font: bold 13px/20px Helvetica,Arial,Verdana,sans-serif;
 
    background-color: #F9F9F9;
 
}
 
 
div#menu > ul > li > ul > li > a {
 
    display: block;
 
    width: 115px;
 
    padding: 5px 0;
 
    color: inherit;
 
}
 
 
/* Hover effect */
 
 
div#menu > ul > li > ul > li:hover {
 
    background-color: #F9F9F9;
 
}
 
 
div#menu > ul > li > ul > li > a:hover {
 
    text-decoration: none;
 
}
 
 
/* Show submenu on hover */
 
 
div#menu > ul > li:hover > ul {
 
    display: block;
 
}
 
 
/* End menu style ======================================================= */
 

Revision as of 16:35, 11 July 2015

html body {

   font-family: Helvetica,Arial,Verdana,sans-serif;
   color: #000000;
   background: #ded6ca url('https://static.igem.org/mediawiki/2013/a/a3/TUM13_paper-bg.png') repeat;

}

/* Start top-section style ============================================== */

/* Remove logo and search */

div#p-logo, div#search-controls {

   display: none;

}

/* Center wiki-menu; set font & bg (as fallback) color */

div#top-section {

   width: 930px;
   height: 20px;
   margin: 0 auto;
   color: #d4c6b6;
   background: #411c03 url('https://static.igem.org/mediawiki/2013/b/b3/TUM13_brown-top-bg.png') repeat-x 50% 0;

}

/* Set font and positions */

div#menubar {

   font-size: 13px;
   font-weight: bold;
   line-height: 20px;

}

div#menubar.right-menu {

   float: right;

}

div#menubar.left-menu {

   float: left;

}

/* Fix text */

div#menubar.left-menu a, div#menubar.left-menu li {

   text-transform: capitalize;

}

div#menubar li {

   display: inline;
   padding: 0 5px;

}

/* White on hover */

div#menubar a:hover {

   text-decoration: none;
   color: #FFFFFF;

}

/* End top-section style ================================================ */

/* Start header style =================================================== */

/* Hide page title (it would appear before the header) */

h1.firstHeading {

   display: none;

}