page-header.less 705 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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
  30. .page-header.tabbed {
  31. padding-bottom: 0px;
  32. .page-tabs {
  33. .nav>li {
  34. &>a {
  35. border-radius: 0px;
  36. }
  37. }
  38. }
  39. }