Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. a:link { color: white; text-decoration: none; }
  2. a:visited { color: white; text-decoration: none; }
  3. a:hover { color:Red; text-decoration: none; }
  4. a:active { color: white; text-decoration: underline; }
  5.  
  6.  
  7.  
  8. .navButton
  9. {
  10.     background-color: #000000;
  11.     filter:alpha(opacity=62.5);
  12.     -moz-opacity:0.625;
  13.     -khtml-opacity: 0.625;
  14.     opacity: 0.625;
  15.     -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=62.5)";
  16.     width:154px;
  17.     height:23px;
  18.     padding-top:2px;
  19.     margin: 1px 1px 1px 1px;
  20.     font-size:14px;
  21.     font-weight:bold;
  22.     text-align:center;
  23. }
  24. .navButton:hover
  25. {
  26.     background-image:url(/Images/NavButton.png);
  27.     color:#ffffff;
  28.     text-decoration:blink;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement