Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. .portfolio {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. display:table;
  6. table-layout: fixed;
  7. width: 100%;
  8. }
  9.  
  10. .portfolio__item {
  11. width: 100%;
  12. background-color: black;
  13. }
  14.  
  15. @media screen and (min-width: 40em) {
  16. .portfolio__item {
  17. display: table-cell;
  18. float: none;
  19. min-width: 20em;
  20. height: 20em;
  21.  
  22. }}
  23.  
  24. .portfolio__link {
  25. display: block;
  26. min-width: 20em;
  27.  
  28. }
  29.  
  30. .portfolio__link img {
  31. min-width: 20em;
  32. height: 20em;
  33. object-fit: cover;
  34. float: left;
  35.  
  36. }
  37.  
  38. .portfolio-nav {
  39. text-align: center;
  40. border-radius: 0;
  41. overflow: hidden;
  42. }
  43.  
  44. .portfolio-nav a {
  45. text-decoration: none;
  46. }
  47.  
  48. .portfolio-nav a:hover {
  49. opacity: 50%;
  50. background-color: black;
  51. transition: .5s ease;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement