Advertisement
RawrBear

Flex Stylus

Jul 6th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. @import '../node_modules/nib'
  2.  
  3.  
  4.  
  5. *
  6.     margin 0
  7.     box-sizing inherit
  8.     font-family verdana
  9.    
  10. html
  11.     box-sizing border-box
  12.  
  13.  
  14. body
  15.     // background-image linear-gradient(top, #2376ae 0%, #c16ecf 100%)
  16.     background: linear-gradient(top white black)
  17.  
  18.  
  19. a
  20.     color white
  21.     font-weight 100
  22.     letter-spacing 2px
  23.     text-decoration none
  24.     background rgba(0, 0, 0, .2)
  25.     padding 20px 5px
  26.     display inline-block
  27.     width 100%
  28.     text-align center
  29.     transition all 0.5s
  30. a:hover
  31.     background-color rgba(0, 0, 0, 0.3)
  32.        
  33.  
  34.  
  35. .wrapper
  36.     max-width 1000px
  37.     margin 0 auto
  38.     padding 50px
  39.     background-color red
  40.  
  41.  
  42. .flex-nav
  43.     ul
  44.         border 1px solid black
  45.         list-style none
  46.         marin 0
  47.         padding 0
  48.         display flex
  49.     li
  50.         flex 1 1 50%
  51.     .social
  52.         flex 1 1 25%
  53.        
  54.  
  55.  
  56. @media all and (max-width 1000px)
  57.     .flex-nav
  58.         ul
  59.             flex-wrap wrap 
  60.         li
  61.             flex 1 1 50%
  62.         .social
  63.             flex 1 1 25%
  64.            
  65. @media all and (max-width 500px)
  66.     .flex-nav
  67.         li
  68.             flex-basis 100%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement