page-header.less 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .header-stats .list-inline {
  29. margin-top: @line-height-computed / 2;
  30. margin-bottom: 0px;
  31. font-size: @font-size-small;
  32. }
  33. }
  34. // Tabbed on full display
  35. @media screen and (min-width: @screen-md-min) {
  36. .page-header.tabbed {
  37. padding-bottom: 0px;
  38. .page-tabs {
  39. .nav>li {
  40. &>a {
  41. border-radius: 0px;
  42. }
  43. }
  44. }
  45. }
  46. }