Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.84 KB | None | 0 0
  1. #game_navigation {
  2.     height: 20px;
  3.     margin: 0 0 -2px 16px;
  4.     padding: 0;
  5.  
  6.     list-style-type: none;
  7.     clear: both;
  8. }
  9.  
  10. #game_navigation li {
  11.     border: 2px solid #d1d4d7;
  12.     border-left-width: 0;
  13.     border-right-width: 0;
  14.     border-bottom-width: 0;
  15.  
  16.     padding: 0 2px;
  17.  
  18.     float: left;
  19. }
  20.  
  21. #game_navigation li.current {
  22.     background: #F8F8F8;
  23.     border: 2px solid #485460;
  24.     border-bottom: 0;
  25.  
  26.     padding: 0;
  27. }
  28.  
  29. #game_navigation li.start {
  30.     border-left-width: 2px;
  31.     padding-left: 0;
  32. }
  33.  
  34. #game_navigation li.end {
  35.     border-right-width: 2px;
  36.     padding-right: 0;
  37. }
  38.  
  39.  
  40.  
  41. #game_navigation a {
  42.     font-size: 12px;
  43.     font-weight: bold;
  44.  
  45.     padding: 1px 8px 0;
  46.     display: block;
  47. }
  48.  
  49. #game_navigation a:hover {
  50.     text-decoration: none;
  51. }
  52.  
  53. #game_navigation li.current a {
  54.     padding-bottom: 2px;
  55. }
  56.  
  57. #game_navigation li.current a:hover {
  58.     color: inherit;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement