Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. /*記事本文内のハイパーリンク*/
  2. .entry-content a:link {/*未訪問*/
  3. background:transparent; /*背景色*/
  4. color:#a93e33; /*文字色*/
  5. font-weight:bold; /*太さ*/
  6. text-decoration:underline; /*線*/
  7. }
  8. .entry-content a:visited {/*閲覧済み*/
  9. background:transparent;
  10. color:#9ea933;
  11. font-weight:bold;
  12. text-decoration:underline;
  13. }
  14. .entry-content a:hover {/*カーソルをのせた時*/
  15. background:transparent;
  16. color:#aeabab;
  17. font-weight:bold;
  18. text-decoration:underline;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement