include.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @include mix(1px, 2px, $arg2: 10, 2px 4px 6px);
  2. @include mix(1px,2px,$arg2:10,2px 4px 6px);
  3. @include mix ( 1px , 2px , $arg2 : 10 , 2px 4px 6px );
  4. @include mix ( 1px , 2px , $arg2 : 10 , 2px 4px 6px );
  5. @include mix(
  6. 1px,
  7. 2px,
  8. $arg2: 10,
  9. 2px 4px 6px
  10. );
  11. @include
  12. mix(
  13. 1px,
  14. 2px,
  15. $arg2: 10,
  16. 2px 4px 6px
  17. );
  18. @include
  19. mix
  20. (
  21. 1px
  22. ,
  23. 2px
  24. ,
  25. $arg2
  26. :
  27. 10
  28. ,
  29. 2px
  30. 4px
  31. 6px
  32. )
  33. ;
  34. @include
  35. mix
  36. (
  37. 1px
  38. ,
  39. 2px
  40. ,
  41. $arg2
  42. :
  43. 10
  44. ,
  45. 2px
  46. 4px
  47. 6px
  48. )
  49. ;
  50. @include mix($very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg: 1px, $very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg1: 2px, $very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg2: 10, 2px 4px 6px);
  51. a {
  52. @include global-variable-overriding;
  53. @include mix($very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg: 1px, $very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg1: 2px, $very-very-very-very-very-very-very-very-very-very-very-very-very-very-long-arg2: 10, 2px 4px 6px);
  54. @include apply-to-ie6-only {}
  55. @include apply-to-ie6-only{}
  56. @include apply-to-ie6-only
  57. {}
  58. @include
  59. apply-to-ie6-only
  60. {
  61. }
  62. @include
  63. apply-to-ie6-only
  64. {
  65. }
  66. }
  67. a {
  68. @include section-type-1(
  69. $header: (margin: 0 0 $margin-base, text-align: left),
  70. $decoration: (type: base, margin: 0 auto -1px 0, primary-color: $brand-primary, secondary-color: $gray-light),
  71. $title: (margin: 0 0 $margin-small, color: false, font-size: $font-size-h3, font-weight: false, line-height: $line-height-h3)
  72. );
  73. }
  74. a {
  75. @include item-spotlight-properties-transition(
  76. "-title",
  77. (box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15))
  78. );
  79. }
  80. a {
  81. @include item-spotlight-properties-transition(
  82. "-title",
  83. (
  84. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15),
  85. border-color: $brand-primary
  86. )
  87. );
  88. }
  89. a {
  90. @include item-spotlight-properties-transition(
  91. "-title",
  92. (
  93. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15),
  94. border-color: $very-very-very-very-very-very-very-very-very-very-very-very-very-long-value
  95. )
  96. );
  97. }