Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. ul#menu li{
  2.     display: inline-block;
  3.     font-size: 1.25em;
  4.     width: 33%;
  5.     margin: 0;
  6.     padding:0;
  7.     text-align: center;
  8. }
  9. ul#menu li a{
  10.     color: #f5f5f5;
  11.     text-decoration: none;
  12.     border-bottom: 1px solid transparent;
  13. }
  14. ul#menu li a:hover{
  15.     border-bottom: 1px solid;
  16. }
  17.  
  18. ul#menu li a:hover:after, ul#menu li a:hover:before {
  19.     top: 100%;
  20.     left: 50%;
  21.     border: solid transparent;
  22.     content: " ";
  23.     height: 0;
  24.     width: 0;
  25.     position: absolute;
  26.     pointer-events: none;
  27. }
  28.  
  29. ul#menu li a:hover:after {
  30.     border-color: rgba(126, 175, 185, 0);
  31.     border-top-color: #7eafb9;
  32.     border-width: 10px;
  33.     margin-left: -10px;
  34. }
  35. ul#menu li a:hover:before {
  36.     border-color: rgba(238, 238, 238, 0);
  37.     border-top-color: #eeeeee;
  38.     border-width: 11px;
  39.     margin-left: -11px;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement