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.
 
 
 
 
 

56 lines
945 B

  1. /**
  2. * This file provides the design styles for the footnotes.
  3. */
  4. /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
  5. /* footnotes section */
  6. .dokuwiki div.footnotes {
  7. div.fn {
  8. margin-bottom: .2rem;
  9. display: table;
  10. vertical-align: top;
  11. > sup,
  12. .content {
  13. display: table-cell;
  14. }
  15. > sup {
  16. vertical-align: top;
  17. // footnote anchor
  18. a.fn_bot {
  19. font-size: .86em;
  20. padding-right: .2em;
  21. }
  22. }
  23. .content {
  24. vertical-align: top;
  25. line-height: 135%;
  26. }
  27. // footnote text
  28. div.content {
  29. line-height: 135%;
  30. }
  31. }
  32. }
  33. /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
  34. /* footnotes in content */
  35. .main-content sup,
  36. .main-content > div > p sup,
  37. .main-content > div > ul > li .li sup {
  38. a.fn_top {
  39. font-size: .7rem;
  40. font-weight: bold;
  41. padding-right: .2em;
  42. }
  43. }
  44. .insitu-footnote {
  45. line-height: 130%;
  46. z-index: 100;
  47. }