page-header.less 791 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // Page Header
  3. // --------------------------------------------------
  4. // Common styles
  5. .page-header {
  6. margin: 0px;
  7. margin-bottom: @line-height-computed;
  8. }
  9. // Small displays
  10. @media screen and (max-width: @screen-sm-max) {
  11. .container {
  12. h1 {
  13. font-size: @font-size-large * 1.25;
  14. }
  15. &>.btn {
  16. float: right;
  17. margin-top: @line-height-computed - 7px;
  18. }
  19. &>.btn-dropdown-toggle {
  20. .material-icon {
  21. width: 24px;
  22. height: 24px;
  23. font-size: 24px;
  24. line-height: 24px;
  25. }
  26. }
  27. }
  28. }
  29. // Tabbed on full display
  30. @media screen and (min-width: @screen-md-min) {
  31. .page-header.tabbed {
  32. padding-bottom: 0px;
  33. .page-tabs {
  34. .nav>li {
  35. &>a {
  36. border-radius: 0px;
  37. }
  38. }
  39. }
  40. }
  41. }