You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

64 lines
1.3 KiB

  1. /**
  2. * This file provides the design styles for the page content.
  3. */
  4. .content .row {
  5. > .col-xs-12 {
  6. box-shadow: @box-shadow;
  7. #dokuwiki__content {
  8. position: relative;
  9. &::before {
  10. content: '';
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. height: @page-header_height;
  15. box-sizing: border-box;
  16. width: 100%;
  17. background-color: @ini_background_page_header;
  18. border-bottom: 1px solid @ini_border_light;
  19. }
  20. .page-content {
  21. padding-top: @page-header_height;
  22. .msg-area + * {
  23. clear: both;
  24. padding-top: 1em; // as h1
  25. }
  26. }
  27. }
  28. }
  29. }
  30. .main-content > .level2,
  31. .main-content > .level1,
  32. .main-content > .level3,
  33. .main-content > .level4,
  34. .main-content > .level5,
  35. .main-content > .level6 {
  36. > p,
  37. > ul > li .li {
  38. a {
  39. font-size: inherit;
  40. }
  41. }
  42. }
  43. .level1,
  44. .level2,
  45. .level3,
  46. .level4,
  47. .level5,
  48. .level6 {
  49. line-height: @line-height-default;
  50. div, p, th, td, textarea,
  51. h1, h2, h3, h4, h5, h6,
  52. dl, dt, dd, ol, ul, li {
  53. line-height: @line-height-default;
  54. }
  55. }