暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_sticky-header.scss 658B

123456789101112131415161718192021222324252627282930313233343536
  1. /*******************************
  2. sticky header
  3. *******************************/
  4. #sticky.is-isticky {
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. z-index: 999;
  10. @include transition(0.3s);
  11. animation: ease-in-out 0.5s fadeInDown;
  12. box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  13. }
  14. // theme1
  15. .theme1 {
  16. &.is-isticky {
  17. background: $color-white;
  18. &:hover {
  19. background: $color-white;
  20. }
  21. }
  22. }
  23. #sticky.custom-sticky.is-isticky {
  24. padding-top: 4px;
  25. padding-bottom: 4px;
  26. @include max-screen(991) {
  27. position: static !important;
  28. }
  29. }
  30. /*******************************
  31. sticky header End
  32. *******************************/