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

master.css 2.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. @import url('https://fonts.googleapis.com/css?family=Titillium+Web|Noto+Sans');
  2. html,
  3. body {
  4. font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif;
  5. height: 100%;
  6. font-size: 15px;
  7. }
  8. p,
  9. li,
  10. .toc {
  11. line-height: 160%;
  12. }
  13. img {
  14. box-shadow: 0px 0px 3px 0px rgb(66, 66, 66);
  15. max-width: 95% !important;
  16. margin-top: 15px;
  17. margin-bottom: 15px;
  18. }
  19. h1,
  20. h2,
  21. h3,
  22. h4,
  23. h5,
  24. h6 {
  25. font-family: 'Noto Sans', Verdana, Geneva, Tahoma, sans-serif;
  26. line-height: 130%;
  27. }
  28. .sideaffix {
  29. line-height: 140%;
  30. }
  31. header .navbar {
  32. border-width: 0 0 0px;
  33. border-radius: 0;
  34. }
  35. body .toc {
  36. background-color: inherit;
  37. overflow: visible;
  38. }
  39. select {
  40. display: inline-block;
  41. overflow: auto;
  42. -webkit-box-sizing: border-box;
  43. box-sizing: border-box;
  44. margin: 0;
  45. padding: 0 30px 0 6px;
  46. vertical-align: middle;
  47. height: 28px;
  48. border: 1px solid #e3e3e3;
  49. line-height: 16px;
  50. outline: 0;
  51. text-overflow: ellipsis;
  52. -webkit-appearance: none;
  53. -moz-appearance: none;
  54. cursor: pointer;
  55. background-image: linear-gradient(45deg, transparent 50%, #707070 0), linear-gradient(135deg, #707070 50%, transparent 0);
  56. background-position: calc(100% - 13px) 11px, calc(100% - 8px) 11px;
  57. background-size: 5px 5px, 5px 6px;
  58. background-repeat: no-repeat;
  59. }
  60. /*
  61. Following code regarding collapse container are fetched
  62. or modified from the Materialize project.
  63. The MIT License (MIT)
  64. Copyright (c) 2014-2018 Materialize
  65. https://github.com/Dogfalo/materialize
  66. */
  67. /* all collapse container */
  68. .collapse-container.last-modified {
  69. margin: 0.5rem 0 1rem 0;
  70. }
  71. /* header */
  72. .collapse-container.last-modified>:nth-child(odd):focus {
  73. outline: 0;
  74. }
  75. .collapse-container.last-modified>:nth-child(odd) {
  76. display: -webkit-box;
  77. display: -webkit-flex;
  78. display: -ms-flexbox;
  79. display: flex;
  80. cursor: pointer;
  81. -webkit-tap-highlight-color: transparent;
  82. line-height: 1.5;
  83. padding: 0.75rem;
  84. background-image:none;
  85. border: 0px;
  86. }
  87. /* body */
  88. .collapse-container.last-modified>:nth-child(even) {
  89. display: none;
  90. -webkit-box-sizing: border-box;
  91. box-sizing: border-box;
  92. padding: 1rem;
  93. border: 0px;
  94. }