Advertisement
Zholdek

style

May 1st, 2020
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. body {
  2. font-family: 'Courier New', Courier, monospace;
  3. }
  4.  
  5.  
  6. img {
  7. width: 300px;
  8. height: 300px;
  9. border-radius: 20px;
  10. }
  11.  
  12.  
  13. .hover-effect:hover
  14. {
  15. opacity : 0.8;
  16. cursor: pointer;
  17. }
  18.  
  19.  
  20. main img:nth-child(3) {
  21. filter: grayscale(100%);
  22. -webkit-filter: grayscale(100%);
  23. -moz-filter: grayscale(100%);
  24. -ms-filter: grayscale(100%);
  25. -o-filter: grayscale(100%);
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement