term.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. .term_link:hover .guide_contence {
  2. display: inline-block;
  3. }
  4. .term_meaning {
  5. font-weight: 700;
  6. }
  7. .term_author {
  8. font-size: 80%;
  9. color: gray;
  10. }
  11. .term_tag {
  12. font-size: 80%;
  13. font-weight: 500;
  14. margin: 0 8px;
  15. }
  16. .term_link {
  17. cursor: pointer;
  18. position: relative;
  19. }
  20. .term_link,
  21. .term_link_new {
  22. color: blue;
  23. padding-left: 2px;
  24. padding-right: 2px;
  25. }
  26. .term_link_new {
  27. color: red;
  28. }
  29. note:hover chapter {
  30. display: inline;
  31. }
  32. .ref > chapter:first-child {
  33. display: inline;
  34. }
  35. chapter {
  36. display: none;
  37. color: var(--box-bg-color1);
  38. text-decoration: none;
  39. cursor: pointer;
  40. }
  41. chapter:hover {
  42. color: var(--link-color);
  43. text-decoration: underline;
  44. }
  45. para {
  46. background-color: var(--drop-bg-color);
  47. padding: 2px 8px;
  48. text-decoration: none;
  49. cursor: pointer;
  50. color: var(--btn-border-color);
  51. border-radius: 5px;
  52. }
  53. para:hover {
  54. text-decoration: underline;
  55. }
  56. commentary {
  57. margin-left: 1.5em;
  58. display: block;
  59. border-left: 3px solid gray;
  60. padding-left: 5px;
  61. }
  62. note > .tran {
  63. color: #5c5c5c;
  64. padding-left: 1em;
  65. padding: 3px;
  66. }
  67. note > .palitext,
  68. .palitext {
  69. font-family: Noto serif;
  70. line-height: 1.5em;
  71. color: #9f3a01;
  72. font-weight: 500;
  73. }
  74. note > .palitext > note {
  75. display: inline;
  76. color: blue;
  77. background-color: unset;
  78. padding: unset;
  79. margin-bottom: unset;
  80. border-radius: unset;
  81. }
  82. .term_word_head_pali {
  83. text-transform: capitalize;
  84. font-size: 200%;
  85. margin: 0.5em 0;
  86. }
  87. .term_word_head {
  88. border-bottom: 1px solid #cecece;
  89. padding: 5px 0;
  90. }
  91. .term_block {
  92. border-bottom: 1px solid #cecece;
  93. padding: 5px 0;
  94. }
  95. .term_word_head_authors a {
  96. color: blue;
  97. margin: 0 3px;
  98. }
  99. .term_word_head_authors a:hover {
  100. text-decoration: underline;
  101. cursor: pointer;
  102. }
  103. note .ref {
  104. text-align: right;
  105. padding: 5px;
  106. font-size: 75%;
  107. margin-top: 8px;
  108. }
  109. .tran ul {
  110. list-style-type: circle;
  111. margin-left: 2em;
  112. }
  113. .tran li {
  114. list-style: inherit;
  115. }
  116. .tran ol {
  117. list-style-type: decimal;
  118. margin: 0;
  119. padding: 0;
  120. margin-left: 2em;
  121. }
  122. .tran:lang(en) > ol {
  123. list-style-type: decimal;
  124. }
  125. /*中文*/
  126. .tran:lang(zh) > ol {
  127. list-style-type: cjk-ideographic;
  128. margin-left: 2.5em;
  129. }
  130. /*简体中文*/
  131. .tran:lang(zh-cn) > ol {
  132. list-style-type: trad-chinese-formal;
  133. margin-left: 2.5em;
  134. }
  135. .tran:lang(zh-hans) > ol {
  136. list-style-type: trad-chinese-formal;
  137. margin-left: 2.5em;
  138. }
  139. /*繁体中文*/
  140. .tran:lang(zh-tw) > ol {
  141. list-style-type: trad-chinese-formal;
  142. margin-left: 2.5em;
  143. }
  144. .tran:lang(zh-hant) > ol {
  145. list-style-type: trad-chinese-formal;
  146. margin-left: 2.5em;
  147. }
  148. /*japanese*/
  149. .tran:lang(jp) > ol {
  150. list-style-type: hiragana;
  151. margin-left: 2.5em;
  152. }
  153. /*kora*/
  154. .tran:lang(ko) > ol {
  155. list-style-type: korean-hangul-formal;
  156. margin-left: 2.5em;
  157. }
  158. /*thai*/
  159. .tran:lang(ti) > ol {
  160. list-style-type: thai;
  161. margin-left: 2em;
  162. }
  163. /*myanmar*/
  164. .tran:lang(my) > ol {
  165. list-style-type: myanmar;
  166. margin-left: 2em;
  167. }
  168. /*myanmar*/
  169. .tran:lang(my) {
  170. font-size: 120%;
  171. }
  172. .tran_div {
  173. margin-bottom: 1em;
  174. padding-bottom: 1em;
  175. padding-top: 0.5em;
  176. border-bottom: 1px solid var(--border-line-color);
  177. }
  178. .tran_div:last-child {
  179. border-bottom: none;
  180. }
  181. .progress_bar_done {
  182. stroke-width: 0;
  183. fill: royalblue;
  184. }
  185. .progress_bar_undone {
  186. stroke-width: 0;
  187. fill: #c0c0c052;
  188. }
  189. .progress_bar_bg {
  190. stroke-width: 0;
  191. fill: #ffffff;
  192. }
  193. .progress_bar_percent {
  194. stroke-width: 0;
  195. fill: limegreen;
  196. }
  197. r {
  198. text-align: right;
  199. display: block;
  200. }
  201. note {
  202. padding: 0.5em 0.8em;
  203. margin-bottom: 0.4em;
  204. border-radius: 5px;
  205. line-height: 1.3em;
  206. display: block;
  207. background-color: #80808014;
  208. }
  209. .bg_color_1 {
  210. background-color: #ebebeb66;
  211. }
  212. .bg_color_2 {
  213. background: linear-gradient(to right, #6afdb033, #ebebeb66);
  214. }
  215. .bg_color_3 {
  216. background: linear-gradient(to right, #6a95fd26, #ebebeb66);
  217. }
  218. .bg_color_4 {
  219. background: linear-gradient(to right, #f9e7911c, #ebebeb66);
  220. }
  221. .bg_color_5 {
  222. background: linear-gradient(to right, #fe99b91c, #ebebeb66);
  223. }
  224. pre {
  225. white-space: pre-line;
  226. font-family: auto;
  227. border-left: 3px solid var(--border-shadow);
  228. margin-left: 1em;
  229. padding-left: 0.5em;
  230. }
  231. .note_tool_bar {
  232. position: relative;
  233. display: none;
  234. }
  235. note:hover .note_tool_bar {
  236. display: block;
  237. }
  238. .sent_menu {
  239. right: 0;
  240. }
  241. .para_menu {
  242. left: 0;
  243. }
  244. .ui-widget input,
  245. .ui-widget select,
  246. .ui-widget textarea,
  247. .ui-widget button {
  248. font-family: unset;
  249. font-size: 1.1em;
  250. }