Last active
October 13, 2015 05:48
-
-
Save moritamoriko/4149071 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a{ | |
color: #ffffff; | |
background-color: #dccf76; | |
margin: 0 4px; | |
padding: 2px 6px; | |
font-weight: normal; | |
text-shadow: none; | |
} | |
/*オンマウスでセレクタ全体の透明度が変わる*/ | |
a:hover { | |
opacity: .7; | |
filter: alpha(opacity=70); /* ie lt 8 */ | |
-ms-filter: "alpha(opacity=70)"; /* ie 8 */ | |
-moz-opacity:0.7; /* FF lt 1.5, Netscape */ | |
-khtml-opacity: 0.7; /* Safari 1.x */ | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment