Bicas

Untitled

Jul 14th, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <div class = "nav">
  2.     <ul>
  3.         <a href = "index.html"><li class = "left">Pagrindinis</li></a>
  4.         <a href = "index.html"><li>Forumas</li></a>
  5.         <a href = "index.html"><li>Nariai</li></a>
  6.         <a href = "index.html"><li>Atnaujinimai</li></a>
  7.         <a href = "index.html"><li>Tiesioginės transliacijos</li></a>
  8.         <a href = "index.html"><li>VVP</li></a>
  9.     </ul>
  10. </div>
  11.  
  12. .nav {
  13.     background: #f6a280;
  14.     width: 1160px;
  15.     height: 50px;
  16.     border-radius: 10px;
  17. }
  18.  
  19. .nav ul {
  20.     position: relative;
  21.     left: -40px;
  22. }
  23.  
  24. .nav ul li {
  25.     position: relative;
  26.     top: 14px;
  27.     padding: 14px 10px 14px;
  28.     background: transparent;
  29.     list-style-type: none;
  30.     transition: 0.5s;
  31.     display: inline;
  32.     border-right-style: solid;
  33.     border-right-width: 2px;
  34.     border-right-color: #df9678;
  35. }
  36.  
  37. .nav ul li.left{
  38.     position: relative;
  39.     top: 14px;
  40.     padding: 14px 10px 14px;
  41.     background: transparent;
  42.     list-style-position: initial;
  43.     list-style-type: none;
  44.     transition: 0.5s;
  45.     display: inline;
  46.     border-right-style: solid;
  47.     border-right-width: 2px;
  48.     border-right-color: #df9678;
  49.     border-top-left-radius: 10px;
  50.     border-bottom-left-radius: 10px;
  51. }
  52.  
  53. .nav ul li:hover {
  54.     background: #df9678;
  55. }
  56.  
  57. .nav ul a {
  58.     color: #fff;
  59.     text-decoration: none;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment