Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <section class="section-hobbies">
  2. <ul class="meals-showcase">
  3. <li>
  4. <figure class="meal-photo">
  5. <img src="resources/css/img/1.jpg">
  6. </figure>
  7. </li>
  8.  
  9. <li>
  10. <figure class="meal-photo">
  11. <img src="resources/css/img/2.jpg">
  12. </figure>
  13. </li>
  14. </ul>
  15.  
  16. <ul class="meals-showcase">
  17. <li>
  18. <figure class="meal-photo">
  19. <img src="resources/css/img/3.jpg">
  20. </figure>
  21. </li>
  22.  
  23. <li>
  24. <figure class="meal-photo">
  25. <img src="resources/css/img/4.jpg">
  26. </figure>
  27. </li>
  28. </ul>
  29. </section>
  30.  
  31. .meals-showcase {
  32. list-style: none;
  33. width: 100%;
  34. /*height: 100%;*/
  35. }
  36.  
  37. .meals-showcase li {
  38. display: block;
  39. float: left;
  40. width: 50%;
  41. }
  42.  
  43. .meal-photo {
  44. width: 100%;
  45. margin: 0;
  46. overflow: hidden;
  47. background: #000;
  48. }
  49.  
  50. .meal-photo img {
  51. opacity: 0.7;
  52. width: 100%;
  53. height: auto;
  54. transform: scale(1.15);
  55. transition: transform .5s, opacity .5s;
  56. }
  57.  
  58. .meal-photo img:hover {
  59. opacity: 1;
  60. transform: scale(1.04);
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement