Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. .gallery {
  2. @include clearfix();
  3. .subtitle {
  4. a {
  5. color: $mainColor;
  6. font-weight: 700;
  7. }
  8. }
  9. .fa {
  10. position: absolute;
  11. top: 50%;
  12. transform: translate(0, -50%);
  13. font-size: 40px;
  14. color: $mainColor;
  15. cursor: pointer;
  16. }
  17. .fa-angle-left {
  18. left: -30px;
  19. }
  20. .fa-angle-right {
  21. right: -30px;
  22. }
  23. .gallery_item {
  24. background: url('../img/spinner.png') no-repeat;
  25. background-position: center;
  26. background-size: 50px;
  27. float: left;
  28. width: 20%;
  29. cursor: pointer;
  30. border-right: 1px solid #fff;
  31. &:last-child {
  32. border-right: 0;
  33. }
  34. .gallery_image {
  35. height: 0;
  36. padding-bottom: 100%;
  37. position: relative;
  38. img {
  39. position: absolute;
  40. height: 100%;
  41. left: 0;
  42. top: 0;
  43. }
  44. }
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement