content.component.css 473 B

123456789101112131415161718192021222324252627282930313233343536
  1. .fixed-top{
  2. height: 48px !important;
  3. }
  4. .nav-top{
  5. line-height: inherit;
  6. }
  7. .nav-top .nav-item
  8. {
  9. float:left !important; /* 向左漂移,将竖排变为横排 */
  10. }
  11. .sidebar {
  12. position: fixed;
  13. top: 0;
  14. bottom: 0;
  15. left: 0;
  16. z-index: 100;
  17. padding: 48px 0 0;
  18. box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  19. }
  20. .nav-top{
  21. list-style: none;
  22. }
  23. .nav-top .nav-item
  24. {
  25. padding-left: 25px;
  26. list-style: none;
  27. }
  28. .main{
  29. padding-top: 48px;
  30. }