Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. @mixin navi-horizontal ($item-width: 200px, $scroll-height: auto, $item-margin: 10px){
  2. overflow: hidden;
  3. width: 100%;
  4. margin: 0;
  5. padding: 0;
  6.  
  7. &__scroll {
  8. overflow-x: auto;
  9. width: 100%;
  10. -webkit-overflow-scrolling: touch;
  11. height: $scroll-height;
  12.  
  13. &__list {
  14. display: inline-table;
  15. overflow-x: auto;
  16. margin: 0 - $item-margin;
  17. padding: 0;
  18. border-collapse: separate;
  19. border-spacing: $item-margin 0;
  20.  
  21. &div, article, li {
  22. display: table-cell;
  23. min-width: $item-width;
  24. @content;
  25. }
  26. }
  27. }
  28. }
  29.  
  30. %navi-item {
  31. background-color: #336699;
  32. margin-right: 10px;
  33. img {
  34. border: 1px solid red;
  35. }
  36. }
  37.  
  38. .navi-item {
  39. background: #e7e7e7;
  40. &__title {
  41. font-weight: bold;
  42. }
  43. img{
  44. border: 1px solid blue;
  45. }
  46. }
  47.  
  48. .navi-horizontal2 {
  49. @include navi-horizontal($item-width: 200px, $scroll-height: 200px, $item-margin: 10px){
  50. @extend %navi-item;
  51. };
  52. }
  53.  
  54. .navi-horizontal {
  55. @include navi-horizontal(150px, 100px){
  56. margin-right: 10px;
  57. border: 1px solid red;
  58. };
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement