Head.css 1.1 KB

1234567891011121314151617181920212223
  1. .head-container { background-color: white; box-shadow: 0px -7px 32px rgba(0,0,0,0.15); }
  2. .head .logo {
  3. height: 50px; padding: 4px 6px; box-sizing: border-box; display: inline-block;
  4. color: white; font-size: 30px; font-weight: lighter; text-decoration: none
  5. }
  6. .head .right { float: right; }
  7. .head .user { display: inline-block; vertical-align: top; margin-right: 20px; text-align: right; padding-top: 7px; }
  8. .head .user .name { color: #5d68ff; font-weight: normal; }
  9. .head .user .address { display: block }
  10. .head .settings {
  11. display: inline-block; height: 50px; width: 50px; text-align: center; vertical-align: middle; transition: all 0.3s;
  12. border-left: 1px solid rgba(0, 0, 0, 0.05); line-height: 50px; font-size: 20px; color: #AAA; font-weight: normal; text-decoration: none;
  13. }
  14. .head .settings:hover { color: #5d68ff; background-color: #FAFAFA; transition: none }
  15. .head .settings:active { background-color: #F5F5F5; transition: none }
  16. .head .menu { box-shadow: 0px 4px 8px rgba(0,0,0,0.1) }
  17. @media screen and (max-width: 1100px) {
  18. .head .right { margin-right: 80px; }
  19. }