Advertisement
Phila1

Tenta 1 HTML/CSS PART 2

Feb 22nd, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 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 : 10px;
  9. }
  10.  
  11.  
  12. .hover-effect:hover {
  13. opacity : 0.8;
  14. cursor: pointer;
  15. }
  16.  
  17.  
  18.  
  19. img:nth-of-type(2) {
  20. filter: grayscale(100%);
  21. -webkit-filter: grayscale(100%);
  22. -ms-filter: grayscale(100%);
  23. -o-filter: grayscale(100%);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement