Team:ZJU-China/CSS/Tabs.css

From 2014.igem.org

(Difference between revisions)
(Created page with "div.tabs { } ul.tabs { margin:0; padding:0; } ul.tabs li { list-style: none; display: inline-block; border: none; width: 30%; text-align: center; } ul...")
 
(5 intermediate revisions not shown)
Line 9: Line 9:
     display: inline-block;
     display: inline-block;
     border: none;
     border: none;
-
     width: 30%;
+
     width: 15%;
     text-align: center;
     text-align: center;
}
}
Line 29: Line 29:
     margin:0;
     margin:0;
     padding:10px;
     padding:10px;
 +
    overflow: auto;
}
}

Latest revision as of 19:40, 17 October 2014

div.tabs { } ul.tabs {

   margin:0;
   padding:0;

} ul.tabs li {

   list-style: none;
   display: inline-block;
   border: none;
   width: 15%;
   text-align: center;

} ul.tabs a {

   padding: 5px 0px;
   width:100%;
   display: inline-block;
   background: #666;
   color: #fff;
   text-decoration: none;

} ul.tabs a.active {

   background: #fff;
   color: #000;
   box-shadow: 2px -2px 2px gray;

} div.tabs {

   background: white;
   margin:0;
   padding:10px;
   overflow: auto;

}