Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. header {
  2. .logo {
  3. grid-area: logo;
  4. }
  5.  
  6. .header__nav {
  7. grid-area: hnav;
  8. }
  9.  
  10. .search {
  11. grid-area: srch;
  12. align-self: center;
  13. }
  14.  
  15. @extend %grid;
  16. grid-template-areas: templateRow((1,'.',3,'logo',6,'hnav',3,'srch',1,'.'));
  17. background-color: #20232a;
  18. color: #ffffff;
  19. position: fixed;
  20. z-index: 1;
  21. width: 100%;
  22. height: 60px;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement