Advertisement
MBSousa

Quest5-CSSselectorsCSSfile

Feb 18th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.25 KB | None | 0 0
  1. body {
  2.   font-family: 'Courier New', Courier, monospace;
  3. }
  4.  
  5. img {
  6.   width: 300px;
  7.   height: 300px;
  8.   border-radius: 10%;      
  9. }
  10.  
  11. .hover-effect:hover {
  12.   opacity: 0.8;      
  13.   cursor: pointer;
  14. }
  15.  
  16. img:nth-of-type(2) {
  17.   filter: grayscale(1);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement