Advertisement
Guest User

Untitled

a guest
Sep 20th, 2015
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.43 KB | None | 0 0
  1. .l-home
  2.    
  3.     .header-mobile
  4.         border-bottom 1px solid #E5D9D1  
  5.  
  6. .header-mobile
  7.     padding 14px 0px 10px
  8.     display none
  9.     background-color $brand-white
  10.     border-bottom 1px solid #E0E0E0
  11.     clearfix()
  12.    
  13.     @media screen and (max-width 768px)
  14.         display block
  15.        
  16.     &.open
  17.         background-color $brand-black
  18.         border-bottom none
  19.        
  20.         .mobile__logotype
  21.  
  22.             .logotype__link
  23.                
  24.                 &:before
  25.                     opacity-ie(0)
  26.                    
  27.                 &:after
  28.                     opacity-ie(1)
  29.                    
  30.         .mobile__trigger-link
  31.            
  32.             &:before
  33.                 opacity-ie(1)
  34.                
  35.         .mobile__trigger-helper
  36.             display none
  37.        
  38.     .mobile__trigger
  39.     .mobile__search
  40.         make-xs-column(3)
  41.        
  42.     .mobile__logotype
  43.         make-xs-column(6)
  44.         text-align center
  45.        
  46.         .logotype__link
  47.             position relative
  48.             display inline-block
  49.             width 115px
  50.             height 20px
  51.            
  52.             &:before
  53.             &:after
  54.                 display block
  55.                 content ""
  56.                 width 115px
  57.                 height 20px
  58.                 position absolute
  59.                 left 0
  60.                 top 0
  61.                 background-repeat no-repeat
  62.            
  63.             &:before
  64.                 img-retina($logotype-folder + "mobile-logotype.png", $logotype-folder + $2x-folder + "mobile-logotype@2x.png", 115px, 20px)
  65.                 opacity-ie(1)
  66.                
  67.             &:after
  68.                 img-retina($logotype-folder + "mobile-logotype-white.png", $logotype-folder + $2x-folder + "mobile-logotype-white@2x.png", 115px, 20px)
  69.                 opacity-ie(0)
  70.            
  71.     .mobile__search
  72.         text-align right
  73.        
  74.         .search__link
  75.             display inline-block
  76.             vertical-align top
  77.             width 19px
  78.             height 19px
  79.             img-retina($icons-folder + "mobile-search-icon.png", $icons-folder + $2x-folder + "mobile-search-icon@2x.png", 19px, 19px)
  80.             background-repeat no-repeat
  81.        
  82.     .mobile__trigger
  83.        
  84.         &-link
  85.             width 20px
  86.             height 20px
  87.             position relative
  88.             display inline-block
  89.             padding 5px 0
  90.            
  91.             &:before
  92.                 position absolute
  93.                 left 0
  94.                 top 0
  95.                 display block
  96.                 content ""
  97.                 width 20px
  98.                 height 20px
  99.                 img-retina($icons-folder + "mobile-close-icon.png", $icons-folder + $2x-folder + "mobile-close-icon@2x.png", 20px, 20px)
  100.                 background-repeat no-repeat
  101.                 opacity-ie(0)
  102.            
  103.         &-helper
  104.             display block
  105.             width 19px
  106.             height 2px
  107.             background-color #a67a53
  108.             margin-bottom 3px
  109.            
  110.             &:last-child
  111.                 margin-bottom 0
  112.                
  113.     .mobile__user
  114.         padding 25px 0
  115.         border-top 1px solid #333333
  116.         border-bottom 1px solid #333333
  117.        
  118.         .navigation
  119.             padding 0
  120.        
  121.         .navlist__link
  122.             font-family $font-sans
  123.             text-transform none
  124.             font-size 15px
  125.             letter-spacing 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement