• Name: velts
  • Language: (X)HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Untitled Document</title>
  5. <style type="text/css">
  6.     *{margin:0;padding:0;}
  7.     body { font-family: Arial, Helvetica, sans-serif}
  8.     h1,h2,h3,h4,h5,h6,p,pre,blockquote,ul,ol,dl,table,address{margin-bottom:14px;}
  9.     img{border:0;}
  10.     ul,dl{padding-left:15px;}
  11.     dt{font-weight:bold;}
  12.     a{text-decoration:underline;}
  13.     a:hover{text-decoration:none;}
  14.     label{cursor:pointer;}
  15.     .clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
  16.     .clearfix{display:inline-block;}
  17.     html[xmlns] .clearfix{display:block;}
  18.     * html .clearfix{height:1%;}
  19.     .imgheader,.imgbutton{text-indent:-9999px;overflow:hidden; background-repeat:no-repeat;}
  20.     .imgbutton{display:block;}
  21.    
  22.     #navBar {
  23.         background: #ddd;
  24.         float: left;
  25.     }
  26.     #navBar ul {
  27.         padding: 0;
  28.         margin: 0;
  29.         float: right;
  30.     }
  31.     #navBar ul li {
  32.         list-style: none;
  33.         padding-top: 8px;
  34.         float: left;
  35.     }
  36.     #navBar ul li a {
  37.         display: block; 
  38.         height: 22px;   
  39.         font-size: 12px;
  40.         text-decoration: none; 
  41.         color: #fff;   
  42.         text-align: center;
  43.         font-weight: bold;
  44.     }
  45.     #navBar #nav {
  46.         float: left;
  47.         border-left: solid 1px #000;
  48.     }
  49.     #navBar #nav li {
  50.         padding: 0;
  51.         border-right: solid 1px #000;
  52.     }
  53.     #navBar #nav li a {
  54.         height: 30px;
  55.         display: block;
  56.         /*width: 100px;*/
  57.         padding: 10px 25px 0 25px;
  58.         min-width: 50px;
  59.         text-align: center;
  60.     }
  61.     #navBar #nav li a:hover,
  62.     #navBar #nav li a.active {
  63.         background: #999;
  64.     }
  65.     #navBar #nav li a {
  66.         /* Just incase */
  67.     }
  68. </style>
  69. </head>
  70.  
  71. <div id="navBar">
  72.     <ul id="nav">
  73.         <li id="nav_home"><a href="default.aspx"><span>Home</span></a></li>
  74.         <li id="nav_about"><a href="about.aspx"class="active"><span>About</span></a></li>
  75.         <li id="nav_prepare"><a href="prepare.aspx"><span>Prepare</span></a></li>
  76.         <li id="nav_event"><a href="event.aspx"><span>The Event</span></a></li>
  77.         <li id="nav_connect"><a href="connect.aspx"><span>Connect</span></a></li>
  78.         <li id="nav_sponsors"><a href="sponsors.aspx"><span>Sponsors</span></a></li>
  79.     </ul>
  80. </div>
  81. </body>
  82. </html>
  83.