_header.scss 403 B

1234567891011121314151617181920212223242526272829
  1. header{
  2. position: fixed;
  3. width: 100%;
  4. height: 35px;
  5. top: 0;
  6. padding: 0 20px;
  7. display: flex;
  8. justify-content: space-between;
  9. background-color: white;
  10. border-bottom: 2px solid rgb(0,0,0);
  11. h1{
  12. margin: auto 0;
  13. }
  14. nav{
  15. margin: auto 0;
  16. }
  17. ul{
  18. display: flex;
  19. li{
  20. margin: 0 35px;
  21. }
  22. }
  23. ul.tags{
  24. display: none;
  25. }
  26. ul.visible{
  27. display: flex;
  28. }
  29. }