Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. .mod-services {
  2. border-bottom: 2px solid #000;
  3. margin: 15px;
  4. border-top: 2px solid #000;
  5. .items {
  6. text-align: center;
  7. display: flex;
  8. flex-wrap: wrap;
  9. justify-content: space-around;
  10.  
  11. }
  12. .item {
  13. display: inline-block;
  14. max-width: 211px;
  15. @media only screen and (min-width: 481px) and (max-width: 767px) {
  16. margin: 0 55px;
  17. }
  18.  
  19. }
  20. .item a {
  21. text-decoration:none;
  22. }
  23. .item img {
  24. -webkit-transition: all 0.5s ease;
  25. -moz-transition: all 0.5s ease;
  26. -ms-transition: all 0.5s ease;
  27. -o-transition: all 0.5s ease;
  28. transition: all 0.5s ease;
  29. }
  30. .item a:hover .item-image {
  31. filter: url(#grayscale);
  32. -webkit-filter: grayscale(100%);
  33. -moz-filter: grayscale(100%);
  34. -ms-filter: grayscale(100%);
  35. -o-filter: grayscale(100%);
  36. filter: grayscale(100%);
  37. filter: Gray();
  38. opacity: 0.6;
  39. }
  40. .item p{
  41. color: #000;
  42. font-size: 21px;
  43. margin-top:10px;
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement