style.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453
  1. /*@import url(font.css);*/
  2. /*@import url(day.css);*/
  3. :root {
  4. --bgDisplay: none;
  5. }
  6. .mn-dwn-arw {
  7. border-color: #909090 transparent;
  8. border-style: solid;
  9. border-width: 5px 4px 0 4px;
  10. width: 0;
  11. height: 0;
  12. margin-left: -2px;
  13. top: 50%;
  14. margin-top: -2px;
  15. position: absolute;
  16. }
  17. body {
  18. font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Noto Sans Myanmar", "ATaiThamKHNewV3-Normal", Arial, Verdana;
  19. font-style: normal;
  20. color: var(--main-color);
  21. font-weight: 400;
  22. font-size: 13px;
  23. overflow-x: hidden;
  24. }
  25. div {
  26. -webkit-box-sizing: border-box;
  27. -moz-box-sizing: border-box;
  28. box-sizing: border-box;
  29. }
  30. hr {
  31. margin: 14px 0;
  32. border: 1px solid var(--tool-line-color);
  33. transform: scaleY(0.4);
  34. }
  35. input,
  36. button,
  37. textarea,
  38. select,
  39. optgroup,
  40. option,
  41. hr,
  42. h1,
  43. h2,
  44. h3 {
  45. font-family: inherit;
  46. font-size: inherit;
  47. font-style: inherit;
  48. font-weight: inherit;
  49. color: inherit;
  50. background-color: inherit;
  51. -webkit-box-sizing: border-box;
  52. -moz-box-sizing: border-box;
  53. box-sizing: border-box;
  54. }
  55. .main {
  56. padding: 0;
  57. z-index: 1;
  58. }
  59. .mainbody {
  60. padding: 0;
  61. margin: 0;
  62. font-size: 100%;
  63. height: 100%;
  64. width: 100%;
  65. }
  66. .sutta {
  67. font-size: 100%;
  68. }
  69. .sutta_top_blank {
  70. height: 50px;
  71. }
  72. .heading {
  73. font-weight: 700;
  74. font-size: 158%;
  75. text-align: center;
  76. }
  77. h1 {
  78. font-size: 150%;
  79. font-weight: 700;
  80. }
  81. h2 {
  82. font-weight: 700;
  83. }
  84. h3 {
  85. font-weight: 700;
  86. }
  87. ::-webkit-scrollbar {
  88. /*width: 8px;*/
  89. /*height: 8px;*/
  90. /*display: none;*/
  91. }
  92. /*::-webkit-scrollbar-track {
  93. -webkit-border-radius: 10px;
  94. border-radius: 10px;
  95. background: rgba(85, 85, 85, 0.1);
  96. }*/
  97. ::-webkit-scrollbar-thumb {
  98. -webkit-border-radius: 10px;
  99. border-radius: 10px;
  100. background: rgba(85, 85, 85, 0);
  101. }
  102. :hover::-webkit-scrollbar-thumb {
  103. -webkit-border-radius: 10px;
  104. border-radius: 10px;
  105. background: rgba(85, 85, 85, 0.4);
  106. }
  107. .toc {
  108. margin: 0;
  109. padding: 0 4px 0 10px;
  110. overflow-y: scroll;
  111. overflow-x: hidden;
  112. height: calc(100% - 143px);
  113. height: -moz-calc(100% - 143px);
  114. height: -webkit-calc(100% - 143px);
  115. width: auto;
  116. word-wrap: break-word;
  117. }
  118. #menubartoolbar {
  119. border-top: 1px solid var(--tool-bg-color3);
  120. border-bottom: 1px solid var(--tool-bg-color3);
  121. padding: 0px;
  122. background-color: var(--tool-bg-color);
  123. display: -webkit-flex;
  124. display: -moz-flex;
  125. display: flex;
  126. }
  127. #menubartoolbar:hover select {
  128. background-color: var(--input-bg-color);
  129. color: var(--btn-hover-color);
  130. }
  131. #menubartoolbar select {
  132. width: 100%;
  133. height: 80px;
  134. padding: 0 15px;
  135. border: 0;
  136. background-color: var(--tool-bg-color);
  137. border-radius: 0;
  138. -webkid-border-radius: 0;
  139. font-weight: 400;
  140. font-size: 150%;
  141. color: var(--tool-color);
  142. margin: 0;
  143. }
  144. #menubartoolbar select option {
  145. background-color: var(--tool-bg-color);
  146. color: var(--tool-color);
  147. }
  148. #leftmenuinner {
  149. color: var(--tool-color);
  150. background-color: var(--tool-bg-color);
  151. position: fixed;
  152. display: inline-block;
  153. top: 3.5em;
  154. left: 0;
  155. padding: 0;
  156. height: 100%;
  157. max-width: 40em;
  158. width: auto;
  159. z-index: 15;
  160. -webkit-transition-duration: 0.4s;
  161. transition-duration: 0.4s;
  162. }
  163. .viewswitch_on {
  164. -webkit-transform: translateX(0em);
  165. -moz-transform: translateX (0em);
  166. transform: translateX (0em);
  167. box-shadow: 5px 0 20px 5px var(--shadow-color);
  168. }
  169. .viewswitch_off {
  170. -webkit-transform: translateX(-42em);
  171. -moz-transform: translateX(-42em);
  172. transform: translateX(-42em);
  173. }
  174. #leftmenuinner h1 {
  175. display: none;
  176. }
  177. #leftmenuinnerinner {
  178. }
  179. #id_info_panal {
  180. position: fixed;
  181. height: 0px;
  182. bottom: 0px;
  183. left: 0px;
  184. /*padding: 3px 10px;*/
  185. width: 100%;
  186. background-color: var(--info-bg-color);
  187. border-top: 1px solid var(--border-line-color);
  188. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  189. z-index: 20;
  190. -webkit-transition-duration: 0.4s;
  191. transition-duration: 0.4s;
  192. -webkit-contain: strict;
  193. contain: strict;
  194. }
  195. #id_info_panal_inner {
  196. padding: 20px;
  197. height: calc(100% - 30px);
  198. width: 100%;
  199. overflow-y: auto;
  200. }
  201. .mainview {
  202. background-color: var(--bg-color);
  203. padding: 0 50px;
  204. z-index: 1;
  205. float: left;
  206. -webkit-transition-duration: 0.4s;
  207. transition-duration: 0.4s;
  208. -webkit-contains: layout;
  209. -moz-contains: layout;
  210. contains: layout;
  211. width: 100%;
  212. }
  213. #body_mainview {
  214. }
  215. .toc .tocitems p {
  216. font-size: 90%;
  217. margin: 4px 0 4px 0.5em;
  218. line-height: 1.2;
  219. }
  220. /*
  221. .toc ul {
  222. font-size: 90%;
  223. list-style-type: none;
  224. padding-left: 0px;
  225. line-height: 1.2;
  226. text-indent: 1px;
  227. }
  228. .toc ul li {
  229. text-indent: 1px;
  230. line-height: 1.2;
  231. margin: 5px 0;
  232. }*/
  233. #content {
  234. margin: 0px 5px 10px 5px;
  235. padding: 1px 3px;
  236. }
  237. #navi_bookmark {
  238. display: none;
  239. }
  240. #navi_note {
  241. display: none;
  242. }
  243. #toolbar {
  244. position: fixed;
  245. top: 0;
  246. left: 0;
  247. background-color: var(--tool-bg-color);
  248. color: var(--tool-color);
  249. width: 100%;
  250. font-size: 100%;
  251. z-index: 17;
  252. height: 3.5em;
  253. display: -webkit-flex;
  254. display: -moz-flex;
  255. display: flex;
  256. -webkit-align-items: center;
  257. -moz-align-items: center;
  258. align-items: center;
  259. -webkit-justify-content: space-between;
  260. -moz-justify-content: space-between;
  261. justify-content: space-between;
  262. padding: 0 10px 0 16px;
  263. border-bottom: 1px solid var(--tool-bg-color3);
  264. }
  265. #toolbar::-webkit-scrollbar {
  266. display: none;
  267. }
  268. .toolgroup1 {
  269. min-width: 7em;
  270. display: -webkit-flex;
  271. display: -moz-flex;
  272. display: flex;
  273. -webkit-justify-content: flex-end;
  274. -moz-justify-content: flex-end;
  275. justify-content: flex-end;
  276. -webkit-align-items: center;
  277. -moz-align-items: center;
  278. align-items: center;
  279. flex-wrap: nowrap;
  280. }
  281. .debug_info {
  282. position: fixed;
  283. left: 0;
  284. top: 0;
  285. opacity: 1;
  286. width: 100%;
  287. height: 100%;
  288. background-color: rgba(25, 25, 25, 0.4);
  289. display: none;
  290. -webkit-align-items: center;
  291. -moz-align-items: center;
  292. -webkit-justify-content: center;
  293. -moz-justify-content: center;
  294. justify-content: center;
  295. z-index: 21;
  296. }
  297. .debug_info #debug {
  298. background-color: var(--tool-bg-color);
  299. color: var(--tool-color);
  300. font-size: 120%;
  301. font-weight: 400;
  302. border-radius: 4px;
  303. height: 150px;
  304. min-width: 300px;
  305. padding: 30px;
  306. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  307. display: -webkit-flex;
  308. display: -moz-flex;
  309. display: flex;
  310. -webkit-align-items: center;
  311. -moz-align-items: center;
  312. -webkit-justify-content: center;
  313. -moz-justify-content: center;
  314. justify-content: center;
  315. }
  316. #word_table {
  317. }
  318. #sutta_text {
  319. margin-bottom: 30px;
  320. }
  321. .sutta_title {
  322. color: var(--main-color);
  323. width: 100%;
  324. border-left: 15px solid #bbb;
  325. margin: 30px 0 20px 0;
  326. padding: 1px 0.5em;
  327. }
  328. .sutta_title a {
  329. float: right;
  330. }
  331. .tran_h1_cn,
  332. .tran_h1_en {
  333. font-size: 100%;
  334. font-weight: 400;
  335. line-height: 1.1;
  336. margin: 0px 2px;
  337. }
  338. .sutta_paragraph,
  339. .pardiv {
  340. width: 100%;
  341. margin-bottom: 3em;
  342. display: -webkit-inline-flex;
  343. display: -moz-inline-flex;
  344. display: inline-flex;
  345. flex-wrap: wrap;
  346. }
  347. .pardiv {
  348. }
  349. .wbwparblock,
  350. .wbwdiv {
  351. display: -webkit-inline-flex;
  352. display: -moz-inline-flex;
  353. display: inline-flex;
  354. -webkit-align-items: flex-start;
  355. -moz-align-items: flex-start;
  356. align-items: flex-start;
  357. -webkit-flex-wrap: wrap;
  358. -moz-flex-wrap: wrap;
  359. flex-wrap: wrap;
  360. }
  361. .wbwdiv {
  362. -webkit-flex: 7;
  363. -moz-flex: 7;
  364. flex: 7;
  365. }
  366. /*
  367. .pali_par_gatha {
  368. width: 50%;
  369. float: left;
  370. padding: 0;
  371. margin-left: 2em;
  372. }*/
  373. .trandiv {
  374. -webkit-flex: 3;
  375. -moz-flex: 3;
  376. flex: 3;
  377. padding: 0 5px;
  378. /*margin: 0 0 0 30%-220px;*/
  379. }
  380. .tran_par_en {
  381. font-size: 80%;
  382. text-indent: 0;
  383. margin-top: 0;
  384. }
  385. .tran_par_cn {
  386. font-size: 90%;
  387. text-indent: 0;
  388. margin-top: 0;
  389. }
  390. .par_note,
  391. .wnotediv {
  392. /*display: none;*/
  393. background-color: var(--bg-color);
  394. /*position: absolute;*/
  395. flex: 0 0 100%;
  396. font-size: 85%;
  397. margin: 12px 0px;
  398. padding: 5px 18px;
  399. }
  400. /*.par_note p, .wnotediv p {
  401. margin: 5px 2px;
  402. }*/
  403. .word {
  404. width: Auto;
  405. float: left;
  406. margin: 0 0.5em 1.8em 0;
  407. page-break-inside: avoid;
  408. }
  409. .word_punc {
  410. width: Auto;
  411. float: left;
  412. margin: 0 0.5em 1.8em -0.4em;
  413. line-height: 1em;
  414. }
  415. .word_detail,
  416. .wbody {
  417. font-weight: 300;
  418. }
  419. .pali,
  420. .whead {
  421. font-weight: 500;
  422. font-size: 110%;
  423. padding: 0px 2px;
  424. margin: 0px;
  425. line-height: 1.5em;
  426. }
  427. .mean {
  428. line-height: 1em;
  429. font-weight: 400;
  430. font-size: 90%;
  431. margin: 0;
  432. clear: both;
  433. display: -webkit-flex;
  434. display: -moz-flex;
  435. display: flex;
  436. align-items: center;
  437. -webkit-justify-content: space-between;
  438. -moz-justify-content: space-between;
  439. justify-content: space-between;
  440. }
  441. .ID {
  442. font-size: 70%;
  443. margin: 0;
  444. float: none;
  445. clear: both;
  446. display: none;
  447. }
  448. .org,
  449. .om,
  450. .case {
  451. font-size: 80%;
  452. margin: 0.3em 0;
  453. clear: both;
  454. color: var(--detail-color);
  455. line-height: 1.3em;
  456. display: flex;
  457. }
  458. .om {
  459. }
  460. .case {
  461. }
  462. .org {
  463. }
  464. .v_bld {
  465. font-weight: 700;
  466. }
  467. .cell,
  468. .case .type {
  469. margin: 0 0.3em 0 1px;
  470. padding: 0px 2px;
  471. outline: 1px solid var(--detail-color);
  472. outline-offset: -1px;
  473. line-height: 1.5em;
  474. }
  475. /*不确定的显示为红色*/
  476. .case_dropbtn .cell2 a {
  477. background-color: #f80;
  478. color: var(--btn-hover-color);
  479. font-weight: 300;
  480. line-height: 1em;
  481. z-index: 100;
  482. }
  483. .clr {
  484. -webkit-flex: 0 0 100%;
  485. -moz-flex: 0 0 100%;
  486. flex: 0 0 100%;
  487. }
  488. .enter {
  489. clear: left;
  490. }
  491. .tran_input {
  492. display: none;
  493. clear: both;
  494. }
  495. .hidden {
  496. display: none;
  497. }
  498. #modifywin {
  499. color: var(--tool-color);
  500. width: auto;
  501. background-color: var(--tool-bg-color3);
  502. position: absolute;
  503. border-radius: 5px;
  504. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  505. border-color: var(--btn-border-line-color);
  506. display: none;
  507. z-index: 10;
  508. }
  509. #modifywin p {
  510. margin: 0;
  511. padding: 0;
  512. }
  513. #modifywin .modifybutton {
  514. padding: 5px 0;
  515. border-top: 1px solid var(--tool-line-color);
  516. background-color: var(--tool-bg-color);
  517. }
  518. #modifywin .modifybutton button {
  519. font-size: 70%;
  520. border-color: var(--tool-color);
  521. border-width: 1px;
  522. }
  523. #modifywin .modifybutton button:hover {
  524. border-color: var(--link-color);
  525. background-color: var(--link-color);
  526. border-width: 1px;
  527. }
  528. #modify_detaile,
  529. #modify_bookmark,
  530. #modify_note,
  531. #modify_spell {
  532. display: none;
  533. padding: 10px 15px;
  534. color: var(--btn-color);
  535. background-color: var(--tool-bg-color);
  536. }
  537. #modify_detaile {
  538. display: block;
  539. }
  540. .modifycancel {
  541. font-size: 100%;
  542. padding: 10px;
  543. border-top: 1px solid var(--tool-line-color);
  544. }
  545. #modify_apply {
  546. padding: 0 15px;
  547. background-color: var(--tool-bg-color);
  548. border-bottom-right-radius: 5px;
  549. border-bottom-left-radius: 5px;
  550. }
  551. .bookmarkcolorblock {
  552. color: #009191;
  553. padding: 4px 4px;
  554. width: 1.2em;
  555. height: 1.5em;
  556. display: inline-block;
  557. margin: 0;
  558. text-align: center;
  559. line-height: 1.5em;
  560. }
  561. .bookmarkcolor0 {
  562. background-color: rgba(0, 0, 0, 0);
  563. }
  564. .bookmarkcolor1 {
  565. background-color: #f99;
  566. }
  567. .bookmarkcolor2 {
  568. background-color: #ff9;
  569. }
  570. .bookmarkcolor3 {
  571. background-color: #9f9;
  572. }
  573. .bookmarkcolor4 {
  574. background-color: #9ff;
  575. }
  576. .bookmarkcolor5 {
  577. background-color: #99f;
  578. }
  579. /*?x?没找到*/
  580. .bookmarkcolorx {
  581. background-color: var(--bookx);
  582. }
  583. /*?a?自动匹配*/
  584. .bookmarkcolora {
  585. /*background-color: var(--booka);*/
  586. background: linear-gradient(85deg, #e6f0ff, #ffffff);
  587. }
  588. .bookmarkcolora,
  589. .bookmarkcolorx,
  590. .bookmarkcolor0,
  591. .bookmarkcolor1,
  592. .bookmarkcolor2,
  593. .bookmarkcolor3,
  594. .bookmarkcolor4,
  595. .bookmarkcolor5 {
  596. padding: 0px 2px;
  597. }
  598. .bma {
  599. display: none;
  600. }
  601. .bmx {
  602. }
  603. .bm1 {
  604. }
  605. .bm2 {
  606. }
  607. .bm3 {
  608. }
  609. .bm4 {
  610. }
  611. .bm5 {
  612. }
  613. #navi_bookmark_inner h3 {
  614. font-size: 100%;
  615. font-weight: 700;
  616. }
  617. /*.editor{
  618. display:inline;
  619. }*/
  620. .debugMsg {
  621. display: none;
  622. }
  623. /*
  624. table {
  625. border-collapse: collapse;
  626. background-color: #FFFFFF;
  627. width: 100%;
  628. }
  629. td,
  630. th {
  631. border: 1px solid #D2D2D2;
  632. font-size: 80%;
  633. vertical-align: baseline;
  634. }
  635. tr.h {
  636. background-color: #F5F5F5;
  637. font-weight: 500;
  638. color: #000000;
  639. }
  640. */
  641. .center {
  642. text-align: center;
  643. }
  644. #device {
  645. margin-right: 16px;
  646. }
  647. #device a:link,
  648. #device a:visited {
  649. color: #4688f1;
  650. text-decoration: none;
  651. }
  652. #device a:focus {
  653. outline: 1px dotted;
  654. }
  655. #device a:hover,
  656. #device a:active {
  657. color: #4688f1;
  658. outline: none;
  659. text-decoration: underline;
  660. }
  661. .select_mode a:link,
  662. #device a:visited {
  663. color: #aaa;
  664. text-decoration: none;
  665. }
  666. .select_mode a:focus {
  667. outline: 1px dotted;
  668. }
  669. .select_mode a:hover,
  670. #device a:active {
  671. color: #000;
  672. outline: none;
  673. text-decoration: underline;
  674. }
  675. button,
  676. input[type="button"],
  677. input[type="submit"] {
  678. font-weight: 500;
  679. font-size: 90%;
  680. background-color: none;
  681. border: 2px solid var(--btn-border-color);
  682. border-radius: 99px;
  683. margin: 2px;
  684. padding: 2px 12px;
  685. -webkit-transition-duration: 0.2s;
  686. -moz-transition-duration: 0.2s;
  687. transition-duration: 0.2s;
  688. cursor: pointer;
  689. display: -webkit-inline-flex;
  690. display: -moz-inline-flex;
  691. display: inline-flex;
  692. -webkit-align-items: center;
  693. -moz-align-items: center;
  694. align-items: center;
  695. -webkit-flex-wrap: nowrap;
  696. -moz-flex-wrap: nowrap;
  697. flex-wrap: nowrap;
  698. -webkit-justify-content: center;
  699. -moz-justify-content: center;
  700. justify-content: center;
  701. }
  702. button:hover,
  703. input[type="button"]:hover,
  704. input[type="submit"]:hover {
  705. background-color: var(--btn-border-color);
  706. color: var(--tool-color);
  707. }
  708. button:disabled,
  709. input[type="button"]:disabled,
  710. input[type="submit"]:disabled {
  711. color: #878787;
  712. border-color: #878787;
  713. }
  714. .btn-group {
  715. position: relative;
  716. width: auto;
  717. display: -webkit-flex;
  718. display: -moz-flex;
  719. display: flex;
  720. -webkit-flex-wrap: nowrap;
  721. -moz-flex-wrap: nowrap;
  722. flex-wrap: nowrap;
  723. }
  724. /*
  725. .btn-group .btn+.btn {
  726. margin-right: -7px;
  727. }*/
  728. .btn-group > .btn:not(:first-child):not(:last-child) {
  729. border-radius: 0;
  730. }
  731. .btn-group > .btn:first-child:not(:last-child) {
  732. border-top-right-radius: 0;
  733. border-bottom-right-radius: 0;
  734. margin-right: -1px;
  735. }
  736. .btn-group > .btn:last-child:not(:first-child) {
  737. border-top-left-radius: 0;
  738. border-bottom-left-radius: 0;
  739. }
  740. /* 容器 <div> - 需要定位下拉内容 */
  741. .dropdown {
  742. position: relative;
  743. display: inline-flex;
  744. }
  745. /* 下拉内容 (默认隐藏) */
  746. .dropdown-content {
  747. border-radius: 3px;
  748. display: none;
  749. position: absolute;
  750. background-color: var(--bg-color);
  751. min-width: 60px;
  752. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  753. z-index: 6;
  754. top: 100%;
  755. right: 0;
  756. }
  757. /*使用一半宽度 (120/2 = 60) 来居中提示工具*/
  758. .dropdown-content::after {
  759. content: " ";
  760. position: absolute;
  761. bottom: 100%;
  762. right: 0;
  763. margin-right: 20px;
  764. border-width: 5px;
  765. border-style: solid;
  766. border-color: transparent transparent var(--bg-color) transparent;
  767. }
  768. /* 下拉菜单的链接 */
  769. .dropdown-content a {
  770. padding: 6px 6px;
  771. text-decoration: none;
  772. display: block;
  773. white-space: nowrap;
  774. color: var(--main-color);
  775. }
  776. /* 鼠标移上去后修改下拉菜单链接颜色 */
  777. .dropdown-content a:hover {
  778. background-color: var(--btn-hover-bg-color);
  779. color: var(--btn-hover-color);
  780. border-radius: 3px;
  781. }
  782. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  783. .dropdown:hover .icon_btn {
  784. background-color: var(--btn-hover-bg-color);
  785. border-color: var(--btn-border-line-color);
  786. }
  787. .dropdown:hover .icon {
  788. fill: var(--btn-hover-color);
  789. }
  790. #file_new {
  791. width: 8em;
  792. }
  793. .tran_words {
  794. font-size: 80%;
  795. border-width: 1px;
  796. border-style: solid;
  797. border-color: blue;
  798. padding: 4px;
  799. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  800. border-radius: 4px;
  801. }
  802. #menu_bookmark,
  803. #menu_file,
  804. #menu_display,
  805. #menu_dict,
  806. #menu_file,
  807. #menu_pali_cannon,
  808. #menu_layout,
  809. #menu_project,
  810. #menu_plugin {
  811. display: none;
  812. }
  813. .submenu {
  814. background-color: var(--tool-bg-color3);
  815. border-radius: 6px;
  816. color: var(--tool-color);
  817. margin: 4px 0;
  818. transition: all 0.4s ease;
  819. }
  820. .submenu_title {
  821. display: flex;
  822. color: var(--btn-color);
  823. background-color: unset;
  824. padding: 8px 12px;
  825. cursor: pointer;
  826. /*width: 100%;*/
  827. margin: 0px;
  828. align-items: center;
  829. justify-content: space-between;
  830. }
  831. .submenu_title:hover {
  832. color: var(--tool-color);
  833. }
  834. .submenu_title:hover .icon {
  835. fill: var(--tool-color);
  836. }
  837. .submenu_details {
  838. opacity: 0;
  839. max-height: 0px;
  840. background-color: var(--tool-bg-color1);
  841. color: var(--btn-color);
  842. font-weight: 400;
  843. border-bottom-left-radius: 6px;
  844. border-bottom-right-radius: 6px;
  845. padding: 0px;
  846. width: 100%;
  847. transition: all 0.4s ease;
  848. overflow: hidden;
  849. }
  850. #btn_close_printprev {
  851. position: fixed;
  852. background-color: rgba(0, 0, 0, 0);
  853. width: 2.5em;
  854. height: 2.5em;
  855. font-size: 2em;
  856. color: #fff;
  857. display: block;
  858. }
  859. #btn_close_printprev a {
  860. width: 2em;
  861. height: 2em;
  862. text-decoration: none;
  863. color: rgba(0, 0, 0, 0);
  864. }
  865. #btn_close_printprev a:hover {
  866. color: #fff;
  867. text-decoration: none;
  868. }
  869. #basic_dict_list p {
  870. padding: 0px;
  871. margin: 2px 4px;
  872. }
  873. .grm_add_mean {
  874. color: #bd8b18;
  875. }
  876. .grm_add_mean_user {
  877. color: var(--mean-user-color);
  878. }
  879. /* 下拉按钮样式 */
  880. .case_dropbtn {
  881. }
  882. .case_dropdown .case_dropbtn {
  883. display: flex;
  884. cursor: pointer;
  885. margin: 0px;
  886. }
  887. /* 容器 <div> - 需要定位下拉内容 */
  888. .case_dropdown {
  889. padding: 0;
  890. cursor: pointer;
  891. min-width: 3em;
  892. }
  893. /* 下拉内容 (默认隐藏) */
  894. .case_dropdown-content {
  895. margin: 0.3em;
  896. display: none;
  897. position: absolute;
  898. background-color: var(--drop-bg-color);
  899. min-width: 8em;
  900. max-width: 30em;
  901. margin: -1px 0px;
  902. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  903. color: var(--main-color);
  904. z-index: 200;
  905. }
  906. .case_dropdown-title {
  907. padding: 0.1em 0.1em;
  908. display: block;
  909. text-align: left;
  910. background-color: #fdfdbf;
  911. font-size: 80%;
  912. cursor: default;
  913. font-weight: 500;
  914. }
  915. /* 下拉菜单的链接 */
  916. .case_dropdown-content a {
  917. padding: 0.3em 0.4em;
  918. line-height: 160%;
  919. text-decoration: none;
  920. display: block;
  921. cursor: pointer;
  922. text-align: left;
  923. color: var(--main-color);
  924. }
  925. /* 鼠标移上去后修改下拉菜单链接颜色 */
  926. .case_dropdown-content a:hover {
  927. background-color: var(--link-color);
  928. color: var(--btn-hover-color);
  929. }
  930. /* 在鼠标移上去后显示下拉菜单 */
  931. .case_dropdown:hover .case_dropdown-content {
  932. display: block;
  933. }
  934. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  935. .case_dropdown:hover .case_dropbtn {
  936. opacity: 0.4;
  937. }
  938. /*下拉菜单结束*/
  939. /* 子下拉按钮样式 */
  940. .case_dropbtn_sub {
  941. }
  942. .case_dropdown_sub .case_dropbtn_sub {
  943. display: flex;
  944. cursor: pointer;
  945. margin: 0px;
  946. }
  947. /* 容器 <div> - 需要定位下拉内容 */
  948. .case_dropdown_sub {
  949. padding: 0;
  950. cursor: pointer;
  951. min-width: 3em;
  952. }
  953. /* 下拉内容 (默认隐藏) */
  954. .case_dropdown-content_sub {
  955. margin: 0.3em;
  956. display: none;
  957. position: absolute;
  958. background-color: var(--drop-bg-color);
  959. min-width: 8em;
  960. max-width: 30em;
  961. margin: -1px 0px;
  962. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  963. color: var(--main-color);
  964. z-index: 200;
  965. left: 5em;
  966. }
  967. .case_dropdown-title_sub {
  968. padding: 0.1em 0.1em;
  969. display: block;
  970. text-align: left;
  971. background-color: #fdfdbf;
  972. font-size: 80%;
  973. cursor: default;
  974. font-weight: 500;
  975. }
  976. /* 下拉菜单的链接 */
  977. .case_dropdown-content_sub a {
  978. /*padding: 0.3em 0.4em;*/
  979. line-height: 160%;
  980. text-decoration: none;
  981. display: block;
  982. cursor: pointer;
  983. text-align: left;
  984. }
  985. /* 鼠标移上去后修改下拉菜单链接颜色 */
  986. .case_dropdown-content_sub a:hover {
  987. background-color: var(--link-color);
  988. color: var(--btn-hover-color);
  989. }
  990. /* 在鼠标移上去后显示下拉菜单 */
  991. .case_dropdown_sub:hover .case_dropdown-content_sub {
  992. display: block;
  993. }
  994. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  995. .case_dropdown_sub:hover .case_dropbtn_sub {
  996. opacity: 0.4;
  997. }
  998. /*下拉菜单结束*/
  999. .wbody:hover .edit_icon {
  1000. opacity: 1;
  1001. }
  1002. #id_dict_matched dict {
  1003. padding: 0px;
  1004. margin: 6px 0 0 0;
  1005. font-size: 1em;
  1006. display: block;
  1007. border-bottom: 2px solid #00f;
  1008. }
  1009. #id_dict_matched dict span {
  1010. background: #00f;
  1011. color: #fff;
  1012. }
  1013. #id_dict_matched pali {
  1014. padding: 0px;
  1015. margin: 0px;
  1016. font-size: 0.9em;
  1017. font-weight: 700;
  1018. display: block;
  1019. background: #ccf;
  1020. }
  1021. #id_dict_matched pali:hover {
  1022. background: #aaf;
  1023. }
  1024. #id_dict_matched org {
  1025. padding: 0px;
  1026. margin: 0px;
  1027. font-size: 0.8em;
  1028. display: block;
  1029. background: #cdf;
  1030. }
  1031. #id_dict_matched org:hover {
  1032. background: #aaf;
  1033. }
  1034. #id_dict_matched mean {
  1035. padding: 0px;
  1036. margin: 0px;
  1037. font-size: 0.8em;
  1038. display: block;
  1039. background: #ccf;
  1040. background: #cdf;
  1041. }
  1042. #id_dict_matched mean:hover {
  1043. background: #aaf;
  1044. }
  1045. #id_dict_matched case {
  1046. padding: 0px;
  1047. margin: 0 0 4px 0;
  1048. font-size: 0.8em;
  1049. display: block;
  1050. background: #cdf;
  1051. }
  1052. #id_dict_matched case:hover {
  1053. background: #aaf;
  1054. }
  1055. /*
  1056. #modify_bookmark div {
  1057. padding: 5px;
  1058. }
  1059. #modify_bookmark div span {
  1060. cursor: pointer;
  1061. border-radius: 4px;
  1062. border: 1px solid #FFF;
  1063. }
  1064. #modify_bookmark div span:hover {
  1065. border: 1px solid #000000;
  1066. }
  1067. /* option tab css */
  1068. ul,
  1069. li {
  1070. white-space: normal;
  1071. color: inherit;
  1072. margin: 0px;
  1073. padding: 0px;
  1074. word-break: keep-all;
  1075. text-overflow: ellipsis;
  1076. }
  1077. .bookmark-tab {
  1078. position: relative;
  1079. height: 100%;
  1080. }
  1081. .bookmark-tab li {
  1082. font-size: 12px;
  1083. cursor: pointer;
  1084. outline-offset: -2px;
  1085. outline-color: var(--main-color);
  1086. }
  1087. .bookmark-tab li:hover {
  1088. box-shadow: 0 0 0 2px var(--link-color) inset;
  1089. }
  1090. .gramma-tab {
  1091. position: relative;
  1092. height: 100%;
  1093. border-bottom: 1px solid #555;
  1094. margin: 3px 0px;
  1095. }
  1096. .gramma-tab li {
  1097. padding: 4px 5px;
  1098. display: inline-block;
  1099. font-size: 0.8em;
  1100. text-align: center;
  1101. margin-left: 0px;
  1102. margin-right: 0px;
  1103. cursor: pointer;
  1104. height: 100%;
  1105. line-height: 1em;
  1106. margin-bottom: 4px;
  1107. border: 1px solid #fff;
  1108. border-radius: 3px;
  1109. transition: all ease 0.3s;
  1110. }
  1111. .gramma-tab li:first-child {
  1112. margin-left: 0px;
  1113. }
  1114. .gramma-tab li:hover {
  1115. }
  1116. .common-tab {
  1117. text-align: center;
  1118. width: auto;
  1119. position: relative;
  1120. height: 100%;
  1121. display: -webkit-flex;
  1122. display: -moz-flex;
  1123. display: flex;
  1124. margin: 15px 15px 0 15px;
  1125. align-items: flex-end;
  1126. color: var(--main-color);
  1127. font-weight: 500;
  1128. background-color: var(--tool-bg-color3);
  1129. z-index: 11;
  1130. }
  1131. .common-tab_li {
  1132. color: var(--btn-color);
  1133. margin: 0;
  1134. padding: 8px 10px;
  1135. display: inline-block;
  1136. cursor: pointer;
  1137. border: 1px solid var(--nocolor);
  1138. border-bottom: 0px;
  1139. }
  1140. .common-tab_li_act {
  1141. color: var(--tool-color);
  1142. margin: 0;
  1143. padding: 8px 10px;
  1144. display: inline-block;
  1145. cursor: pointer;
  1146. box-shadow: 0 1px 0 0 var(--tool-bg-color);
  1147. background-color: var(--tool-bg-color);
  1148. border: 1px solid var(--nocolor);
  1149. border-bottom: 0px;
  1150. border-top-right-radius: 4px;
  1151. border-top-left-radius: 4px;
  1152. }
  1153. /*
  1154. .common-tab li:first-child {
  1155. margin-left: 0px;
  1156. }
  1157. .common-tab li:last-child {
  1158. margin-right: 0px;
  1159. }
  1160. */
  1161. .common-tab_li:hover {
  1162. background-color: var(--btn-hover-bg-color);
  1163. border: 1px solid var(--tool-line-color);
  1164. border-bottom: 0px;
  1165. border-top-right-radius: 4px;
  1166. border-top-left-radius: 4px;
  1167. }
  1168. #export_data {
  1169. display: none;
  1170. }
  1171. .dict_row0 {
  1172. background: #fff;
  1173. }
  1174. .dict_row-1 {
  1175. background: #ffd;
  1176. }
  1177. .dict_row-2 {
  1178. background: #ffb;
  1179. }
  1180. .dict_row0 {
  1181. background: #fff;
  1182. }
  1183. .dict_row1 {
  1184. background: #ffd;
  1185. }
  1186. .dict_row2 {
  1187. background: #ffb;
  1188. }
  1189. .dict_row3 {
  1190. background: #ff9;
  1191. }
  1192. .dict_row4 {
  1193. background: #ff7;
  1194. }
  1195. .dict_row5 {
  1196. background: #ff5;
  1197. }
  1198. .dict_row6 {
  1199. background: #ff3;
  1200. }
  1201. .dict_row_new {
  1202. background: #f5f5f5;
  1203. width: auto;
  1204. }
  1205. .word_parent {
  1206. margin: 2px;
  1207. padding: 2px;
  1208. font-size: 80%;
  1209. }
  1210. .word_current {
  1211. margin: 2px;
  1212. padding-left: 0.5em;
  1213. font-size: 100%;
  1214. font-weight: 700;
  1215. }
  1216. .word_child {
  1217. margin: 2px;
  1218. padding-left: 2em;
  1219. font-size: 80%;
  1220. }
  1221. .mean_block span {
  1222. background-color: #aaf;
  1223. margin: 0;
  1224. padding: 0 3px;
  1225. border-radius: 4px;
  1226. }
  1227. /*
  1228. .mean_block span:hover,
  1229. span:active {
  1230. cursor: pointer;
  1231. background-color: #E0DDDD;
  1232. margin: 0;
  1233. padding: 0 3px;
  1234. border-radius: 4px;
  1235. }*/
  1236. .fun_block {
  1237. background-color: var(--tool-bg-color);
  1238. color: var(--tool-color);
  1239. width: 50em;
  1240. padding: 20px 40px;
  1241. margin-bottom: 20px;
  1242. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  1243. border-radius: 8px;
  1244. }
  1245. .fun_block h2 {
  1246. border-bottom: 1px solid var(--tool-line-color);
  1247. margin-bottom: 1em;
  1248. padding-bottom: 10px;
  1249. font-size: 120%;
  1250. color: var(--tool-color);
  1251. }
  1252. #userfilelist {
  1253. display: inline-block;
  1254. width: 100%;
  1255. }
  1256. #id_app_name {
  1257. font-size: 200%;
  1258. font-weight: 400;
  1259. color: #1eafff;
  1260. padding: 25px 30px;
  1261. }
  1262. .mean_cell {
  1263. display: inline-block;
  1264. cursor: pointer;
  1265. border: black solid thin;
  1266. margin: 2px 2px;
  1267. padding: 1px 0;
  1268. border-radius: 4px;
  1269. background-color: #ececec;
  1270. }
  1271. .mean_inner {
  1272. display: inline;
  1273. }
  1274. .mean_button {
  1275. display: none;
  1276. margin: 0;
  1277. padding: 1px 5px;
  1278. }
  1279. .mean_cell:hover .mean_button {
  1280. display: inline;
  1281. }
  1282. .mean_button:hover {
  1283. background-color: #3e8e41;
  1284. }
  1285. .button_shell {
  1286. display: inline-block;
  1287. width: 1em;
  1288. }
  1289. #id_text_edit_form textarea {
  1290. font-size: 16px;
  1291. width: 99%;
  1292. }
  1293. .debugMsg > textarea {
  1294. width: 60%;
  1295. }
  1296. /*
  1297. .submitbtn {
  1298. border: 1px solid #DCDCDC;
  1299. padding: 4px 8px;
  1300. font-size: 13px;
  1301. font-weight: 400;
  1302. min-height: 1em;
  1303. color: #009191;
  1304. background-color: #F9F9F9;
  1305. border-radius: 4px;
  1306. margin: 0 2px;
  1307. -webkit-transition-duration: 0.2s;
  1308. transition-duration: 0.2;
  1309. cursor: pointer;
  1310. }
  1311. .submitbtn:hover {
  1312. background-color: #4688F1;
  1313. border: 1px solid #4688F1;
  1314. color: #FFFFFF;
  1315. }
  1316. .tool_button {}
  1317. */
  1318. .edit_tran_button {
  1319. display: inline;
  1320. height: 1.5em;
  1321. padding: 0 5px;
  1322. margin: 0 3px 0 0;
  1323. opacity: 0.7;
  1324. }
  1325. .edit_tran_button:hover {
  1326. opacity: 1;
  1327. }
  1328. @keyframes viewbug {
  1329. 0% {
  1330. opacity: 0;
  1331. }
  1332. 40% {
  1333. opacity: 1;
  1334. }
  1335. 60% {
  1336. opacity: 1;
  1337. }
  1338. 100% {
  1339. opacity: 0;
  1340. }
  1341. }
  1342. .note_sen {
  1343. font-size: 90%;
  1344. color: var(--detail-color);
  1345. }
  1346. .comm_par {
  1347. font-size: 80%;
  1348. padding: 16px;
  1349. border-top: 1px solid var(--main-color);
  1350. border-bottom: 1px solid var(--main-color);
  1351. }
  1352. .imgbutton {
  1353. border: 0;
  1354. padding: 0;
  1355. opacity: 0.6;
  1356. }
  1357. .imgbutton:hover {
  1358. border: 0;
  1359. padding: 0;
  1360. opacity: 1;
  1361. background: none;
  1362. }
  1363. .imgbutton:hover .icon {
  1364. fill: var(--link-color);
  1365. }
  1366. .in_word_button {
  1367. margin: 0px 4px;
  1368. outline: 1px solid var(--detail-color);
  1369. outline-offset: -1px;
  1370. cursor: pointer;
  1371. }
  1372. .un_pali {
  1373. color: #aaf;
  1374. }
  1375. .un_begin {
  1376. color: #aaf;
  1377. }
  1378. .un_end {
  1379. color: #aaf;
  1380. }
  1381. .paliword1 {
  1382. }
  1383. .paliword2 {
  1384. margin: 0.3em 0;
  1385. clear: left;
  1386. display: none;
  1387. }
  1388. /*
  1389. .mean table {
  1390. border-collapse: collapse;
  1391. background-color: #FFFFFF;
  1392. width: 100%;
  1393. }
  1394. .mean td,th {
  1395. border: 1px solid #D2D2D2;
  1396. font-size: 100%;
  1397. vertical-align: baseline;
  1398. }
  1399. .mean tr.h {
  1400. background-color: #F5F5F5;
  1401. font-weight: 500;
  1402. color: #000000;
  1403. }
  1404. */
  1405. #id_palicannon_index_filelist li {
  1406. margin-left: 1em;
  1407. overflow: hidden;
  1408. font-size: 95%;
  1409. }
  1410. #input_meaning {
  1411. width: 90%;
  1412. }
  1413. #input_org {
  1414. width: 90%;
  1415. }
  1416. #input_om {
  1417. width: 90%;
  1418. }
  1419. #input_case {
  1420. width: 90%;
  1421. display: none;
  1422. }
  1423. .tocitems li {
  1424. overflow: hidden;
  1425. }
  1426. .toc_h_0 {
  1427. display: none;
  1428. }
  1429. .toc_h_1 {
  1430. padding-left: 0;
  1431. }
  1432. .toc_h_2 {
  1433. padding-left: 1em;
  1434. }
  1435. .toc_h_3 {
  1436. padding-left: 2em;
  1437. }
  1438. .toc_h_4 {
  1439. padding-left: 3em;
  1440. }
  1441. .head_par {
  1442. width: 100%;
  1443. font-weight: 700;
  1444. }
  1445. .head_par .head_pali_1 {
  1446. text-align: center;
  1447. font-size: 200%;
  1448. border-bottom: 3px solid var(--main-color);
  1449. }
  1450. .head_par .head_pali_2 {
  1451. text-align: center;
  1452. font-size: 150%;
  1453. }
  1454. .head_par .head_pali_3 {
  1455. font-size: 120%;
  1456. }
  1457. .head_par .head_pali_4 {
  1458. font-size: 100%;
  1459. }
  1460. #id_text_edit_form {
  1461. padding: 12px;
  1462. color: var(--btn-color);
  1463. background-color: var(--tool-bg-color);
  1464. width: 50%;
  1465. position: fixed;
  1466. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  1467. left: 200px;
  1468. top: 200px;
  1469. display: none;
  1470. z-index: 18;
  1471. border-radius: 2px;
  1472. }
  1473. #id_text_edit_author {
  1474. width: 300px;
  1475. }
  1476. #id_text_edit_language {
  1477. margin-right: 16px;
  1478. }
  1479. .dialog-title {
  1480. padding-bottom: 5px;
  1481. text-align: center;
  1482. vertical-align: middle;
  1483. width: 100%;
  1484. font-weight: 500;
  1485. }
  1486. #id_text_edit_caption {
  1487. display: flex;
  1488. flex-wrap: wrap;
  1489. cursor: move;
  1490. justify-content: space-between;
  1491. }
  1492. .blackscreen {
  1493. position: fixed;
  1494. left: 0;
  1495. top: 0;
  1496. width: 100%;
  1497. height: 100%;
  1498. background-color: rgba(25, 25, 25, 0.6);
  1499. display: none;
  1500. z-index: 14;
  1501. }
  1502. .nocolor {
  1503. opacity: 0;
  1504. }
  1505. .tree_expand {
  1506. padding: 5px 1px;
  1507. border: 1px solid #dcdcdc;
  1508. }
  1509. .pnotediv {
  1510. width: 100%;
  1511. padding: 5px;
  1512. box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
  1513. display: none;
  1514. }
  1515. .note_parblock:first-child {
  1516. border-top: none;
  1517. padding-top: 0;
  1518. }
  1519. .note_parblock {
  1520. border-bottom: var(--border);
  1521. padding: 1em 0;
  1522. }
  1523. .tran_parblock:first-child {
  1524. border-top: none;
  1525. padding-top: 0;
  1526. }
  1527. .tran_parblock {
  1528. border-top: var(--border);
  1529. padding: 1em 0;
  1530. }
  1531. .en_text {
  1532. font-size: 150%;
  1533. }
  1534. .zh_text {
  1535. font-size: 150%;
  1536. }
  1537. .tw_text {
  1538. font-size: 150%;
  1539. }
  1540. .wnotediv {
  1541. font-size: 85%;
  1542. border-left: 5px solid #cdc;
  1543. margin: 2px 5px 2px 1em;
  1544. padding: 2px;
  1545. clear: left;
  1546. }
  1547. .wnotediv p {
  1548. margin: 5px 2px;
  1549. }
  1550. .full_note_handle .full_note {
  1551. display: none;
  1552. }
  1553. /* 在鼠标移上去后显示下拉菜单 */
  1554. .full_note_handle:hover .full_note {
  1555. display: inline;
  1556. }
  1557. .edit_tool {
  1558. flex: 0 0 100%;
  1559. display: inline-flex;
  1560. margin: 0;
  1561. width: 100%;
  1562. justify-content: space-evenly;
  1563. }
  1564. .edit_tool .icon {
  1565. height: 1em;
  1566. width: 1em;
  1567. }
  1568. .head_tool {
  1569. margin-top: 3em;
  1570. color: var(--detail-color);
  1571. }
  1572. .par_heading {
  1573. flex: 0 0 100%;
  1574. margin-bottom: 2em;
  1575. font-family: "Noto Serif", "Noto Sans TC", "Noto Sans SC";
  1576. }
  1577. .par_heading .heading_parblock_1_pali {
  1578. font-size: 170%;
  1579. font-weight: 700;
  1580. border-bottom: 1px solid var(--border-line-color);
  1581. }
  1582. .par_heading .heading_parblock_1_zh {
  1583. font-size: 110%;
  1584. font-weight: 700;
  1585. }
  1586. .par_heading .heading_parblock_1_tw {
  1587. font-size: 110%;
  1588. font-weight: 700;
  1589. }
  1590. .par_heading .heading_parblock_1_en {
  1591. font-size: 100%;
  1592. font-weight: 700;
  1593. }
  1594. .par_heading .heading_parblock_2_pali {
  1595. font-size: 160%;
  1596. font-weight: 700;
  1597. border-bottom: 1px solid var(--border-line-color);
  1598. }
  1599. .par_heading .heading_parblock_2_zh {
  1600. font-size: 110%;
  1601. font-weight: 700;
  1602. }
  1603. .par_heading .heading_parblock_2_tw {
  1604. font-size: 110%;
  1605. font-weight: 700;
  1606. }
  1607. .par_heading .heading_parblock_2_en {
  1608. font-size: 110%;
  1609. font-weight: 700;
  1610. }
  1611. .par_heading .heading_parblock_3_pali {
  1612. font-size: 130%;
  1613. font-weight: 700;
  1614. border-bottom: 1px solid var(--border-line-color);
  1615. }
  1616. .par_heading .heading_parblock_3_zh {
  1617. font-size: 100%;
  1618. font-weight: 700;
  1619. }
  1620. .par_heading .heading_parblock_3_tw {
  1621. font-size: 100%;
  1622. font-weight: 700;
  1623. }
  1624. .par_heading .heading_parblock_3_en {
  1625. font-size: 100%;
  1626. font-weight: 700;
  1627. }
  1628. .par_heading .heading_parblock_4_pali {
  1629. font-size: 110%;
  1630. font-weight: 700;
  1631. border-bottom: 1px solid var(--border-line-color);
  1632. }
  1633. .par_heading .heading_parblock_4_zh {
  1634. font-size: 90%;
  1635. font-weight: 700;
  1636. }
  1637. .par_heading .heading_parblock_4_tw {
  1638. font-size: 90%;
  1639. font-weight: 700;
  1640. }
  1641. .par_heading .heading_parblock_4_en {
  1642. font-size: 90%;
  1643. font-weight: 700;
  1644. }
  1645. .par_heading .heading_parblock_5_pali {
  1646. font-size: 110%;
  1647. font-weight: 700;
  1648. border-bottom: 1px solid var(--border-line-color);
  1649. }
  1650. .par_heading .heading_parblock_5_zh {
  1651. font-size: 90%;
  1652. font-weight: 700;
  1653. }
  1654. .par_heading .heading_parblock_5_tw {
  1655. font-size: 90%;
  1656. font-weight: 700;
  1657. }
  1658. .par_heading .heading_parblock_5_en {
  1659. font-size: 90%;
  1660. font-weight: 700;
  1661. }
  1662. .par_heading .heading_parblock_6_pali {
  1663. font-size: 110%;
  1664. font-weight: 700;
  1665. border-bottom: 1px solid var(--border-line-color);
  1666. }
  1667. .par_heading .heading_parblock_6_zh {
  1668. font-size: 90%;
  1669. font-weight: 700;
  1670. }
  1671. .par_heading .heading_parblock_6_tw {
  1672. font-size: 90%;
  1673. font-weight: 700;
  1674. }
  1675. .par_heading .heading_parblock_6_en {
  1676. font-size: 90%;
  1677. font-weight: 700;
  1678. }
  1679. .par_heading .heading_parblock_7_pali {
  1680. font-size: 110%;
  1681. font-weight: 700;
  1682. border-bottom: 1px solid var(--border-line-color);
  1683. }
  1684. .par_heading .heading_parblock_7_zh {
  1685. font-size: 90%;
  1686. font-weight: 700;
  1687. }
  1688. .par_heading .heading_parblock_7_tw {
  1689. font-size: 90%;
  1690. font-weight: 700;
  1691. }
  1692. .par_heading .heading_parblock_7_en {
  1693. font-size: 90%;
  1694. font-weight: 700;
  1695. }
  1696. .par_heading .heading_parblock_8_pali {
  1697. font-size: 110%;
  1698. font-weight: 700;
  1699. border-bottom: 1px solid var(--border-line-color);
  1700. }
  1701. .par_heading .heading_parblock_8_zh {
  1702. font-size: 90%;
  1703. font-weight: 700;
  1704. }
  1705. .par_heading .heading_parblock_8_tw {
  1706. font-size: 90%;
  1707. font-weight: 700;
  1708. }
  1709. .par_heading .heading_parblock_8_en {
  1710. font-size: 90%;
  1711. font-weight: 700;
  1712. }
  1713. .toc_heading {
  1714. padding: 0;
  1715. }
  1716. .toc_heading_0 {
  1717. display: none;
  1718. }
  1719. .toc_heading_1 {
  1720. padding-left: 0.5em;
  1721. padding-bottom: 0.3em;
  1722. }
  1723. .toc_heading_2 {
  1724. padding-left: 1em;
  1725. padding-bottom: 0.3em;
  1726. }
  1727. .toc_heading_3 {
  1728. padding-left: 1.5em;
  1729. padding-bottom: 0.3em;
  1730. }
  1731. .toc_heading_4 {
  1732. padding-left: 2em;
  1733. padding-bottom: 0.3em;
  1734. }
  1735. .toc_heading_5 {
  1736. padding-left: 2.5em;
  1737. padding-bottom: 0.3em;
  1738. }
  1739. .toc_heading_6 {
  1740. padding-left: 3em;
  1741. padding-bottom: 0.3em;
  1742. }
  1743. .toc_heading_7 {
  1744. padding-left: 3.5em;
  1745. padding-bottom: 0.3em;
  1746. }
  1747. .toc_heading_8 {
  1748. padding-left: 4em;
  1749. padding-bottom: 0.3em;
  1750. }
  1751. .toc_item {
  1752. display: block;
  1753. }
  1754. .toc_item_0 {
  1755. display: none;
  1756. }
  1757. .toc_item_1 {
  1758. padding-left: 0.5em;
  1759. padding-bottom: 0.3em;
  1760. }
  1761. .toc_item_2 {
  1762. padding-left: 1em;
  1763. padding-bottom: 0.3em;
  1764. }
  1765. .toc_item_3 {
  1766. padding-left: 1.5em;
  1767. padding-bottom: 0.3em;
  1768. }
  1769. .toc_item_4 {
  1770. padding-left: 2em;
  1771. padding-bottom: 0.3em;
  1772. }
  1773. .toc_item_5 {
  1774. padding-left: 2.5em;
  1775. padding-bottom: 0.3em;
  1776. }
  1777. .toc_item_6 {
  1778. padding-left: 3em;
  1779. padding-bottom: 0.3em;
  1780. }
  1781. .toc_item_7 {
  1782. padding-left: 3.5em;
  1783. padding-bottom: 0.3em;
  1784. }
  1785. .toc_item_8 {
  1786. padding-left: 4em;
  1787. padding-bottom: 0.3em;
  1788. }
  1789. .edit_icon {
  1790. opacity: 0;
  1791. height: 1.2em;
  1792. width: 1.2em;
  1793. fill: var(--link-color);
  1794. -webkit-transition-duration: 0.2s;
  1795. transition-duration: 0.2s;
  1796. }
  1797. .toolbtn {
  1798. display: none;
  1799. }
  1800. #word_table_inner table {
  1801. border-collapse: collapse;
  1802. background-color: #ffffff;
  1803. width: 100%;
  1804. }
  1805. #word_table_inner td,
  1806. th {
  1807. border: 1px solid #d2d2d2;
  1808. font-size: 80%;
  1809. vertical-align: baseline;
  1810. }
  1811. #word_table_inner tr.h {
  1812. background-color: #f5f5f5;
  1813. font-weight: 500;
  1814. color: #000000;
  1815. }
  1816. #menu_button_home {
  1817. margin-right: auto;
  1818. }
  1819. .border_right {
  1820. border-right: 1px solid var(--tool-line-color);
  1821. height: 1.8em;
  1822. margin: 0 10px 0 10px;
  1823. }
  1824. #new_input_Tran1 {
  1825. display: none;
  1826. }
  1827. #new_input_Tran2 {
  1828. display: none;
  1829. }
  1830. .v_paranum {
  1831. color: #55f;
  1832. }
  1833. .v_note {
  1834. color: #51b351;
  1835. }
  1836. #id_heading_edit_level {
  1837. display: none;
  1838. }
  1839. #id_text_edit_delete {
  1840. background-color: #e6c9a4;
  1841. display: none;
  1842. }
  1843. .toc_heading td {
  1844. vertical-align: top;
  1845. }
  1846. .toc_heading_inner {
  1847. }
  1848. .code_list_dropdown {
  1849. display: flex;
  1850. align-items: center;
  1851. white-space: nowrap;
  1852. margin: 0;
  1853. }
  1854. .project_res_add_author {
  1855. display: flex;
  1856. align-items: center;
  1857. white-space: nowrap;
  1858. margin: 0;
  1859. }
  1860. .editor_project_res_info input {
  1861. width: 100%;
  1862. }
  1863. #id_dict_curr_word_inner table {
  1864. }
  1865. #id_dict_curr_word_inner table {
  1866. border-collapse: collapse;
  1867. }
  1868. #id_dict_curr_word_inner td,
  1869. th {
  1870. border: 1px solid #000000;
  1871. font-size: 80%;
  1872. vertical-align: baseline;
  1873. }
  1874. #id_dict_curr_word_inner .h {
  1875. background-color: #9999cc;
  1876. font-weight: bold;
  1877. color: #000000;
  1878. }
  1879. /*
  1880. #id_dict_match_result table {border-collapse: collapse;}
  1881. #id_dict_match_result td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  1882. #id_dict_match_result .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  1883. */
  1884. .normal_table table {
  1885. border-collapse: collapse;
  1886. }
  1887. .normal_table td,
  1888. th {
  1889. border: 1px solid #000000;
  1890. font-size: 80%;
  1891. vertical-align: baseline;
  1892. }
  1893. .normal_table .h {
  1894. background-color: #9999cc;
  1895. font-weight: bold;
  1896. color: #000000;
  1897. }
  1898. .frame_table table {
  1899. border-collapse: collapse;
  1900. }
  1901. .frame_table td,th {
  1902. border: 1px solid #000;
  1903. font-size: 100%;
  1904. vertical-align: baseline;
  1905. }
  1906. .frame_table thead{
  1907. background: burlywood;
  1908. }
  1909. .frame_table tbody{
  1910. background: antiquewhite;
  1911. }
  1912. #id_wizard_palicannon_index_filelist p {
  1913. margin: 0;
  1914. }
  1915. .pali_book_select .pali_book_item {
  1916. padding: 0.3em 0.6em;
  1917. line-height: 1.4em;
  1918. border-radius: 2px;
  1919. -webkit-transition-duration: 0.2s;
  1920. transition-duration: 0.2s;
  1921. cursor: pointer;
  1922. display: -webkit-box;
  1923. display: -moz-box;
  1924. display: box;
  1925. word-break: keep-all;
  1926. overflow: hidden;
  1927. white-space: nowrap;
  1928. }
  1929. .pali_book_select .pali_book_item:hover {
  1930. background-color: var(--tool-link-hover-color);
  1931. color: var(--btn-hover-color);
  1932. }
  1933. .pali_book_select {
  1934. overflow-x: hidden;
  1935. /*border-left: 1px solid var(--border-line-color);*/
  1936. max-width: 100%;
  1937. float: left;
  1938. }
  1939. .word_edit {
  1940. width: auto;
  1941. font-size: 80%;
  1942. padding: 2px 4px;
  1943. margin-bottom: 10px;
  1944. background-color: #e2f9e3;
  1945. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  1946. }
  1947. .word_edit .word_edit_head {
  1948. border-bottom: 1px solid var(--border-line-color);
  1949. margin-bottom: 0.1em;
  1950. padding-bottom: 3px;
  1951. font-weight: 400;
  1952. color: var(--main-color);
  1953. }
  1954. .word_edit input[type="input"] {
  1955. width: inherit;
  1956. }
  1957. /*2018-7-21 add by visuddhinanda*/
  1958. .res_item .tool_bar td {
  1959. border-right: 1px solid var(--tool-line-color);
  1960. }
  1961. .res_item {
  1962. border: 1px solid var(--tool-line-color);
  1963. border-radius: 5px;
  1964. width: 302px;
  1965. margin: 6px 0;
  1966. transition: all 0.4s ease;
  1967. }
  1968. .res_item .tool_bar .res_button {
  1969. margin: 0;
  1970. padding: 0;
  1971. cursor: pointer;
  1972. }
  1973. .res_item .tool_bar .res_type {
  1974. margin: 0;
  1975. padding: 0;
  1976. display: none;
  1977. }
  1978. .res_info {
  1979. border-left: 1px solid #555;
  1980. }
  1981. .res_info:hover {
  1982. border-left: 1px solid #585;
  1983. cursor: pointer;
  1984. }
  1985. .res_info_1 {
  1986. color: var(--tool-color);
  1987. padding: 2px 4px;
  1988. }
  1989. .res_info_2 {
  1990. font-size: 80%;
  1991. padding: 1px 4px;
  1992. }
  1993. .res_info_1 .book_name {
  1994. font-weight: 700;
  1995. }
  1996. #wizard_div_mybook,
  1997. #wizard_div_palicannon {
  1998. margin-top: 3.5em;
  1999. justify-content: center;
  2000. width: 80em;
  2001. }
  2002. #pc_res_loader {
  2003. /*display:none;*/
  2004. }
  2005. .res_load_progress_canvas {
  2006. background-color: #995;
  2007. }
  2008. .load_progress_canvas {
  2009. background-color: #995;
  2010. }
  2011. #loading_bar {
  2012. top: 3.5em;
  2013. left: 0;
  2014. width: 100%;
  2015. stroke-dasharray: 255%;
  2016. stroke-dashoffset: 255%;
  2017. stroke: #4688f1;
  2018. fill: none;
  2019. position: fixed;
  2020. }
  2021. @keyframes opacityGo {
  2022. 0% {
  2023. opacity: 1;
  2024. }
  2025. 100% {
  2026. opacity: 0;
  2027. }
  2028. }
  2029. #circleProcess {
  2030. width: 3em;
  2031. height: 3em;
  2032. stroke-dasharray: 255%;
  2033. stroke-dashoffset: 255%;
  2034. stroke: var(--btn-color);
  2035. fill: none;
  2036. -webkit-transform: rotate(-90deg);
  2037. -moz-transform: rotate(-90deg);
  2038. -ms-transform: rotate(-90deg);
  2039. -o-transform: rotate(-90deg);
  2040. transform: rotate(-90deg);
  2041. display: none;
  2042. position: absolute;
  2043. stroke-width: 0.2em;
  2044. }
  2045. #load_progress_num {
  2046. display: none;
  2047. }
  2048. #id_wizard_palicannon_index_filelist .case_dropdown {
  2049. display: inline-block;
  2050. background-color: #aaa;
  2051. }
  2052. #load_progress_div {
  2053. margin-right: 8px;
  2054. width: 3em;
  2055. height: 3em;
  2056. display: none;
  2057. -webkit-align-items: center;
  2058. -moz-align-items: center;
  2059. -webkit-justify-content: center;
  2060. -moz-justify-content: center;
  2061. justify-content: center;
  2062. }
  2063. .ctrl {
  2064. display: none;
  2065. }
  2066. .pali_book_select_div {
  2067. overflow: hidden;
  2068. display: inline-flex;
  2069. flex-wrap: nowrap;
  2070. justify-content: center;
  2071. align-items: center;
  2072. width: 100%;
  2073. height: 10em;
  2074. }
  2075. #wizard_palicannon_par_select_toc {
  2076. flex: 3;
  2077. padding: 0 10px;
  2078. /*border-right: 1px solid var(--border-line-color);*/
  2079. will-change: min-height;
  2080. overflow-x: hidden;
  2081. }
  2082. .wizard_palicannon_par_select_toc_inner {
  2083. position: relative;
  2084. transform: translate(0, 0);
  2085. transform: translate3d(0, 0, 0);
  2086. will-change: position, transform;
  2087. }
  2088. .wizard_par_tools {
  2089. font-size: 85%;
  2090. border-top: 1px solid var(--border-line-color);
  2091. }
  2092. .wizard_par_tools_title {
  2093. }
  2094. .pali_book_select .selected {
  2095. background-color: var(--link-color);
  2096. color: var(--btn-hover-color);
  2097. word-break: keep-all;
  2098. text-overflow: ellipsis;
  2099. overflow: hidden;
  2100. }
  2101. #id_wizard_palicannon_index_book {
  2102. font-weight: 700;
  2103. color: var(--tool-color);
  2104. }
  2105. .par_tools_show_ctl {
  2106. cursor: pointer;
  2107. }
  2108. .wizard_par_tools_body {
  2109. display: none;
  2110. }
  2111. .wizard_par_div p {
  2112. margin-top: 0.2em;
  2113. margin-bottom: 1.2em;
  2114. }
  2115. /*VRI CSS*/
  2116. .wizard_par_div .note {
  2117. color: blue;
  2118. }
  2119. .wizard_par_div .bld {
  2120. font-weight: bold;
  2121. }
  2122. .wizard_par_div .paranum {
  2123. font-weight: bold;
  2124. }
  2125. .wizard_par_div .hit {
  2126. background-color: blue;
  2127. color: white;
  2128. }
  2129. .wizard_par_div .context {
  2130. background-color: green;
  2131. color: white;
  2132. }
  2133. .wizard_par_div p {
  2134. border-top: 0in;
  2135. border-bottom: 0in;
  2136. padding-top: 0in;
  2137. padding-bottom: 0in;
  2138. margin-top: 0in;
  2139. margin-bottom: 0.5cm;
  2140. }
  2141. .wizard_par_div .indent {
  2142. font-size: 12pt;
  2143. text-indent: 2em;
  2144. margin-left: 3em;
  2145. }
  2146. .wizard_par_div .bodytext {
  2147. font-size: 12pt;
  2148. text-indent: 2em;
  2149. }
  2150. .wizard_par_div .hangnum {
  2151. font-size: 12pt;
  2152. text-indent: 2em;
  2153. }
  2154. /* Namo tassa, and nitthita -- no unique structural distinction */
  2155. .wizard_par_div .centered {
  2156. font-size: 12pt;
  2157. text-align: center;
  2158. }
  2159. .wizard_par_div .unindented {
  2160. font-size: 12pt;
  2161. }
  2162. .wizard_par_div .book {
  2163. font-size: 21pt;
  2164. text-align: center;
  2165. font-weight: bold;
  2166. }
  2167. .wizard_par_div .chapter {
  2168. font-size: 18pt;
  2169. text-align: center;
  2170. font-weight: bold;
  2171. }
  2172. .wizard_par_div .nikaya {
  2173. font-size: 24pt;
  2174. text-align: center;
  2175. font-weight: bold;
  2176. }
  2177. .wizard_par_div .title {
  2178. font-size: 12pt;
  2179. text-align: center;
  2180. font-weight: bold;
  2181. }
  2182. .wizard_par_div .subhead {
  2183. font-size: 12pt;
  2184. text-align: center;
  2185. font-weight: bold;
  2186. }
  2187. .wizard_par_div .subsubhead {
  2188. font-size: 12pt;
  2189. text-align: center;
  2190. font-weight: bold;
  2191. }
  2192. /* Gatha line 1 */
  2193. .wizard_par_div .gatha1 {
  2194. font-size: 12pt;
  2195. margin-bottom: 0em;
  2196. margin-left: 4em;
  2197. }
  2198. /* Gatha line 2 */
  2199. .wizard_par_div .gatha2 {
  2200. font-size: 12pt;
  2201. margin-bottom: 0em;
  2202. margin-left: 4em;
  2203. }
  2204. /* Gatha line 3 */
  2205. .wizard_par_div .gatha3 {
  2206. font-size: 12pt;
  2207. margin-bottom: 0em;
  2208. margin-left: 4em;
  2209. }
  2210. /* Gatha last line */
  2211. .wizard_par_div .gathalast {
  2212. font-size: 12pt;
  2213. margin-bottom: 0.5cm;
  2214. margin-left: 4em;
  2215. }
  2216. /*VRI CSS End*/
  2217. #right_tool_bar {
  2218. color: var(--btn-color);
  2219. position: fixed;
  2220. height: calc(100% - 3.5em);
  2221. top: 3.5em;
  2222. left: 100%;
  2223. width: 28vw;
  2224. background-color: var(--tool-bg-color);
  2225. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  2226. z-index: 20;
  2227. -webkit-transition-duration: 0.4s;
  2228. transition-duration: 0.4s;
  2229. -webkit-contain: strict;
  2230. contain: strict;
  2231. z-index: 51;
  2232. }
  2233. #right_tool_bar_inner {
  2234. padding: 10px;
  2235. height: calc(100% - 3px);
  2236. width: 100%;
  2237. overflow-y: auto;
  2238. }
  2239. .tooltip {
  2240. position: relative;
  2241. display: inline;
  2242. }
  2243. .tooltip .tooltiptext {
  2244. visibility: hidden;
  2245. position: absolute;
  2246. min-width: 80px;
  2247. background-color: #555;
  2248. color: #fff;
  2249. /*text-align: center;*/
  2250. padding: 5px;
  2251. border-radius: 6px;
  2252. z-index: 1;
  2253. opacity: 0;
  2254. transition: all 0.4s;
  2255. white-space: nowrap;
  2256. }
  2257. .tooltip:hover .tooltiptext {
  2258. visibility: visible;
  2259. opacity: 1;
  2260. }
  2261. .tooltip-top {
  2262. top: -120%;
  2263. left: 50%;
  2264. margin-left: -40px;
  2265. transition: all 0.6s;
  2266. }
  2267. .tooltip:hover .tooltip-top {
  2268. top: -150%;
  2269. }
  2270. .tooltip .tooltip-top::after {
  2271. content: " ";
  2272. position: absolute;
  2273. top: 100%; /* 提示工具底部 */
  2274. left: 50%;
  2275. margin-left: -5px;
  2276. border-width: 5px;
  2277. border-style: solid;
  2278. border-color: #555 transparent transparent transparent;
  2279. }
  2280. .tooltip-bottom {
  2281. top: 100%;
  2282. left: 50%;
  2283. margin-left: -60px;
  2284. }
  2285. .tooltip-bottom::after {
  2286. content: "";
  2287. position: absolute;
  2288. bottom: 100%;
  2289. left: 50%;
  2290. margin-left: -5px;
  2291. border-width: 5px;
  2292. border-style: solid;
  2293. border-color: transparent transparent #555 transparent;
  2294. }
  2295. .tooltip_menu {
  2296. position: relative;
  2297. display: inline;
  2298. cursor: help;
  2299. }
  2300. .tooltip_menu .tooltiptext {
  2301. visibility: hidden;
  2302. position: absolute;
  2303. min-width: 80px;
  2304. background-color: #555;
  2305. color: #fff;
  2306. text-align: center;
  2307. padding: 2px;
  2308. border-radius: 6px;
  2309. z-index: 1;
  2310. opacity: 0;
  2311. transition: opacity 0.6s;
  2312. }
  2313. .tooltip_menu a {
  2314. padding: 3px 5px;
  2315. margin: 0;
  2316. }
  2317. .tooltip_menu a:hover {
  2318. background-color: #fff;
  2319. color: #555;
  2320. }
  2321. .tooltip_menu:hover {
  2322. color: red;
  2323. }
  2324. .tooltip_menu:hover .tooltiptext {
  2325. visibility: visible;
  2326. opacity: 1;
  2327. }
  2328. .tooltip_menu-bottom {
  2329. top: 100%;
  2330. left: 50%;
  2331. margin-left: -60px;
  2332. }
  2333. .tooltip_menu-bottom::after {
  2334. content: "";
  2335. position: absolute;
  2336. bottom: 100%;
  2337. left: 50%;
  2338. margin-left: -5px;
  2339. border-width: 5px;
  2340. border-style: solid;
  2341. border-color: transparent transparent #555 transparent;
  2342. }
  2343. #wizard_palicannon_par_select_text_head {
  2344. padding: 20px 30px;
  2345. border-radius: 8px;
  2346. /*border: 1px solid var(--border-line-color);*/
  2347. display: none;
  2348. background-color: var(--tool-bg-color);
  2349. margin: 20px 40px 40px 40px;
  2350. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2351. }
  2352. .wizard_palicannon_par_select_text_head_inner {
  2353. width: 100%;
  2354. display: inline-flex;
  2355. padding: 16px;
  2356. border-top: 1px solid var(--tool-line-color);
  2357. }
  2358. #wizard_palicannon_par_select_text_head_bookname {
  2359. padding: 1em;
  2360. font-size: 160%;
  2361. }
  2362. .chapter_info {
  2363. width: 20em;
  2364. margin-right: auto;
  2365. float: left;
  2366. }
  2367. .resouse_info {
  2368. width: 20em;
  2369. float: left;
  2370. }
  2371. #palicannon_par_res_list {
  2372. color: var(--main-color);
  2373. width: auto;
  2374. max-width: 30em;
  2375. background-color: var(--bg-color);
  2376. margin: 0;
  2377. padding: 4px 10px;
  2378. position: absolute;
  2379. border-radius: 2px;
  2380. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  2381. display: none;
  2382. z-index: 10;
  2383. transition: opacity 0.6s;
  2384. }
  2385. #palicannon_par_res_list_shell {
  2386. display: none;
  2387. }
  2388. .pc_nav_button_show_res_win {
  2389. margin: 2px 5px;
  2390. padding: 2px;
  2391. }
  2392. .icon_btn {
  2393. color: var(--btn-color);
  2394. padding: 0.3em 0.3em;
  2395. border: 1px solid var(--btn-border-color);
  2396. border-radius: 3px;
  2397. margin: 0 2px;
  2398. }
  2399. .icon_btn:hover {
  2400. padding: 0.3em 0.3em;
  2401. background-color: var(--btn-hover-bg-color);
  2402. border: 1px solid var(--btn-border-color);
  2403. border-radius: 3px;
  2404. margin: 0 2px;
  2405. }
  2406. .importbtn {
  2407. width: 28em;
  2408. height: 28em;
  2409. border-radius: 8px;
  2410. text-align: left;
  2411. justify-content: flex-start;
  2412. vertical-align: bottom;
  2413. align-items: flex-end;
  2414. flex-wrap: wrap;
  2415. padding: 3em;
  2416. background-color: #7d7d7d;
  2417. color: var(--btn-hover-color);
  2418. }
  2419. .importbtn h1,
  2420. .importbtnp p {
  2421. flex: 100%;
  2422. text-align: left;
  2423. justify-content: flex-start;
  2424. vertical-align: bottom;
  2425. align-items: flex-end;
  2426. }
  2427. .editor_wizard_caption {
  2428. flex: 100%;
  2429. text-align: left;
  2430. }
  2431. .editor_wizard_nav {
  2432. position: absolute;
  2433. right: 45px;
  2434. }
  2435. .palicannon_nav_item {
  2436. width: 10em;
  2437. text-overflow: ellipsis;
  2438. overflow: hidden;
  2439. white-space: nowrap;
  2440. }
  2441. #id_debug_output p {
  2442. margin: 1px;
  2443. padding: 1px;
  2444. font-size: 10pt;
  2445. }
  2446. .palicannon_nav_level_0 {
  2447. padding-left: 7.5em;
  2448. display: none;
  2449. }
  2450. .palicannon_nav_level_1 {
  2451. }
  2452. .palicannon_nav_level_1 {
  2453. font-weight: 700;
  2454. padding-left: 0;
  2455. }
  2456. .palicannon_nav_level_2 {
  2457. }
  2458. .palicannon_nav_level_2 {
  2459. padding-left: 1em;
  2460. }
  2461. .palicannon_nav_level_3 {
  2462. }
  2463. .palicannon_nav_level_3 {
  2464. padding-left: 2em;
  2465. }
  2466. .palicannon_nav_level_4 {
  2467. }
  2468. .palicannon_nav_level_4 {
  2469. padding-left: 3em;
  2470. }
  2471. .palicannon_nav_level_5 {
  2472. }
  2473. .palicannon_nav_level_5 {
  2474. padding-left: 4em;
  2475. }
  2476. .palicannon_nav_level_6 {
  2477. }
  2478. .palicannon_nav_level_6 {
  2479. padding-left: 5em;
  2480. }
  2481. .palicannon_nav_level_7 {
  2482. }
  2483. .palicannon_nav_level_7 {
  2484. padding-left: 6em;
  2485. }
  2486. .palicannon_nav_level_8 {
  2487. }
  2488. .palicannon_nav_level_8 {
  2489. padding-left: 7em;
  2490. }
  2491. .tree_expand_0 {
  2492. cursor: pointer;
  2493. margin: 0 3px;
  2494. }
  2495. .tree_expand_1 {
  2496. cursor: pointer;
  2497. margin: 0 3px;
  2498. }
  2499. .tree_expand_2 {
  2500. cursor: pointer;
  2501. margin: 0 3px;
  2502. }
  2503. .tree_expand_3 {
  2504. cursor: pointer;
  2505. margin: 0 3px;
  2506. }
  2507. .tree_expand_4 {
  2508. cursor: pointer;
  2509. margin: 0 3px;
  2510. }
  2511. .tree_expand_5 {
  2512. cursor: pointer;
  2513. margin: 0 3px;
  2514. }
  2515. .tree_expand_6 {
  2516. cursor: pointer;
  2517. margin: 0 3px;
  2518. }
  2519. .tree_expand_7 {
  2520. cursor: pointer;
  2521. margin: 0 3px;
  2522. }
  2523. .tree_expand_8 {
  2524. cursor: pointer;
  2525. margin: 0 3px;
  2526. }
  2527. .tree_collapse_0 {
  2528. cursor: pointer;
  2529. margin: 0 3px;
  2530. display: none;
  2531. }
  2532. .tree_collapse_1 {
  2533. cursor: pointer;
  2534. margin: 0 3px;
  2535. display: none;
  2536. }
  2537. .tree_collapse_2 {
  2538. cursor: pointer;
  2539. margin: 0 3px;
  2540. display: none;
  2541. }
  2542. .tree_collapse_3 {
  2543. cursor: pointer;
  2544. margin: 0 3px;
  2545. display: none;
  2546. }
  2547. .tree_collapse_4 {
  2548. cursor: pointer;
  2549. margin: 0 3px;
  2550. display: none;
  2551. }
  2552. .tree_collapse_5 {
  2553. cursor: pointer;
  2554. margin: 0 3px;
  2555. display: none;
  2556. }
  2557. .tree_collapse_6 {
  2558. cursor: pointer;
  2559. margin: 0 3px;
  2560. display: none;
  2561. }
  2562. .tree_collapse_7 {
  2563. cursor: pointer;
  2564. margin: 0 3px;
  2565. display: none;
  2566. }
  2567. .tree_collapse_8 {
  2568. cursor: pointer;
  2569. margin: 0 3px;
  2570. display: none;
  2571. }
  2572. .foot_div {
  2573. text-align: center;
  2574. color: #b5b5b5;
  2575. position: absolute;
  2576. width: 100%;
  2577. margin-top: calc(100vh - 89px - 3.6em);
  2578. }
  2579. #search_div {
  2580. font-size: 120%;
  2581. padding: 30px 0;
  2582. text-align: center;
  2583. padding-right: 1.5em;
  2584. }
  2585. .mybook_l {
  2586. flex: 5;
  2587. margin-right: 20px;
  2588. }
  2589. .mybook_r {
  2590. padding: 20px;
  2591. flex: 5;
  2592. border-radius: 8px;
  2593. background-color: var(--tool-bg-color);
  2594. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2595. }
  2596. .mybook_r .common-tab {
  2597. padding: 0 20px;
  2598. margin: 0;
  2599. margin-top: 20px;
  2600. background-color: var(--tool-bg-color);
  2601. border-bottom: 1px solid var(--tool-line-color);
  2602. }
  2603. .mybook_r .common-tab_li {
  2604. padding: 0.4em 0.6em;
  2605. margin: 0;
  2606. margin-bottom: -1px;
  2607. background-color: var(--tool-bg-color);
  2608. border-bottom: 1px solid var(--tool-line-color);
  2609. }
  2610. .mybook_r .common-tab_li_act {
  2611. padding: 0.4em 0.6em;
  2612. margin-bottom: -1px;
  2613. background-color: var(--tool-bg-color);
  2614. border: 1px solid var(--tool-line-color);
  2615. border-bottom: 1px solid var(--tool-bg-color);
  2616. }
  2617. #wizard_sutta_preview {
  2618. color: var(--main-color);
  2619. height: 100%;
  2620. background-color: var(--bg-color);
  2621. padding: 2em;
  2622. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2623. }
  2624. .right_tool_btn {
  2625. position: fixed;
  2626. right: 50px;
  2627. top: 5em;
  2628. background-color: unset;
  2629. }
  2630. .right_tool_btn button {
  2631. background-color: var(--link-color);
  2632. border-color: var(--link-color);
  2633. color: var(--btn-color);
  2634. height: 3em;
  2635. width: 3em;
  2636. padding: 0;
  2637. }
  2638. .right_tool_btn button:hover {
  2639. background-color: var(--link-hover-color);
  2640. border-color: var(--link-color);
  2641. color: var(--btn-hover-color);
  2642. height: 3em;
  2643. width: 3em;
  2644. padding: 0;
  2645. }
  2646. .right_tool_btn .icon {
  2647. height: 2em;
  2648. width: 2em;
  2649. }
  2650. /*Word Map*/
  2651. .wm_word_block {
  2652. /*width:100%;*/
  2653. }
  2654. .wm_word_block table {
  2655. width: auto;
  2656. font-size: 100%;
  2657. }
  2658. .wm_word_block td {
  2659. width: auto;
  2660. font-size: 100%;
  2661. }
  2662. .wm_word_block_root_shell {
  2663. width: auto;
  2664. display: inline-block;
  2665. padding: 10px;
  2666. }
  2667. .wm_word_block_root {
  2668. width: auto;
  2669. border: 2px solid #98b304;
  2670. padding: 5px;
  2671. border-radius: 8px;
  2672. display: inline-block;
  2673. }
  2674. .wm_word_block_root .toolbar {
  2675. font-size: 80%;
  2676. border-bottom: 1px solid #bbbbbb;
  2677. display: flex;
  2678. justify-content: space-between;
  2679. margin-bottom: 8px;
  2680. }
  2681. .word_new {
  2682. border: 2px solid #828282;
  2683. }
  2684. .wm_word_block_root_h {
  2685. margin: 0 1em;
  2686. }
  2687. .wm_word_block_root_v {
  2688. }
  2689. .wordmap_line_shell {
  2690. height: 5em;
  2691. width: 2em;
  2692. }
  2693. .wordmap_line {
  2694. width: 100%;
  2695. stroke: #4688f1;
  2696. fill: none;
  2697. }
  2698. .wm_line {
  2699. height: 2em;
  2700. }
  2701. .wm_child_div {
  2702. display: inline-flex;
  2703. }
  2704. .wm_div {
  2705. width: 100%;
  2706. height: 100%;
  2707. }
  2708. #wm_title {
  2709. height: 3em;
  2710. display: flex;
  2711. padding: 5px;
  2712. justify-content: space-between;
  2713. border-bottom: 1px solid var(--tool-line-color);
  2714. }
  2715. #wm_body {
  2716. display: flex;
  2717. position: relative;
  2718. height: calc(100% - 3em);
  2719. height: -moz-calc(100% - 3em);
  2720. height: -webkit-calc(100% - 3em);
  2721. width: 100%;
  2722. overflow-y: scroll;
  2723. overflow-x: scroll;
  2724. }
  2725. #wm_body_inner {
  2726. }
  2727. .wm_root_div {
  2728. text-align: center;
  2729. }
  2730. .wm_one_mean {
  2731. margin: 2px 5px;
  2732. outline: 1px dotted;
  2733. }
  2734. .wm_one_mean:hover {
  2735. cursor: pointer;
  2736. outline: 1px solid;
  2737. }
  2738. .wm_dictname {
  2739. background-color: #999999;
  2740. }
  2741. .wm_dictname:hover {
  2742. cursor: pointer;
  2743. background-color: #bbbbbb;
  2744. }
  2745. .wm_word_block_root .type {
  2746. font-family: Times, Arial, Verdana;
  2747. font-style: italic;
  2748. font-weight: 400;
  2749. font-size: 95%;
  2750. }
  2751. /*End of Word-Map*/
  2752. /**/
  2753. .pop_win_full {
  2754. /*margin-top: 3.5em;*/
  2755. position: fixed;
  2756. left: 0;
  2757. top: 0;
  2758. opacity: 1;
  2759. width: 100%;
  2760. height: 100%;
  2761. background-color: rgba(0, 0, 0, 0.8);
  2762. display: none;
  2763. -webkit-align-items: center;
  2764. -moz-align-items: center;
  2765. -webkit-justify-content: center;
  2766. -moz-justify-content: center;
  2767. justify-content: center;
  2768. z-index: 21;
  2769. }
  2770. .pop_win_full #pop_win_inner {
  2771. /*background-color: var(--tool-bg-color);*/
  2772. color: var(--tool-color);
  2773. border-radius: 4px;
  2774. height: 95%;
  2775. width: 100%;
  2776. margin: 1em;
  2777. display: -webkit-flex;
  2778. display: -moz-flex;
  2779. display: flex;
  2780. }
  2781. .un_parent {
  2782. display: block;
  2783. width: 3em;
  2784. overflow: auto;
  2785. }
  2786. .comp_parent {
  2787. display: block;
  2788. }
  2789. /*new*/
  2790. .radio-button {
  2791. text-align: center;
  2792. width: auto;
  2793. height: 90%;
  2794. display: -webkit-flex;
  2795. display: -moz-flex;
  2796. display: inline;
  2797. margin: 3px 10px;
  2798. align-items: flex-end;
  2799. color: var(--main-color);
  2800. font-weight: 500;
  2801. }
  2802. .radio-button li {
  2803. color: var(--btn-color);
  2804. margin: 0;
  2805. padding: 4px 5px;
  2806. display: inline;
  2807. cursor: pointer;
  2808. border: 1px solid var(--nocolor);
  2809. }
  2810. .radio-button .li_act {
  2811. color: var(--tool-color);
  2812. margin: 0;
  2813. padding: 4px 5px;
  2814. display: inline;
  2815. cursor: pointer;
  2816. background-color: var(--btn-hover-bg-color);
  2817. border: 1px solid var(--tool-line-color);
  2818. border-radius: 4px;
  2819. }
  2820. .radio-button li:hover {
  2821. background-color: var(--btn-hover-bg-color);
  2822. border: 1px solid var(--tool-line-color);
  2823. border-radius: 4px;
  2824. }
  2825. .dict_word_list {
  2826. }
  2827. .dict_word {
  2828. display: block;
  2829. border: 1px solid var(--tool-line-color);
  2830. border-radius: 5px;
  2831. margin: 6px 0;
  2832. padding: 5px;
  2833. transition: all 0.4s ease;
  2834. }
  2835. .dict_word .word {
  2836. display: block;
  2837. }
  2838. .dict_word .dict {
  2839. font-size: 80%;
  2840. color: #a4f5df;
  2841. /*border-bottom: 1px solid var(--tool-line-color);*/
  2842. }
  2843. .dict_word .mean {
  2844. font-size: 90%;
  2845. margin: 2px 0;
  2846. line-height: 130%;
  2847. font-weight: 300;
  2848. display: inline-block;
  2849. }
  2850. .dict_word hl {
  2851. background-color: #ffff7a;
  2852. color: black;
  2853. font-weight: 400;
  2854. }
  2855. #dict_ref_search_input_head {
  2856. display: flex;
  2857. justify-content: space-between;
  2858. }
  2859. #dict_ref_search_input_head .case_dropdown {
  2860. min-width: 0;
  2861. }
  2862. #dict_ref_search_input_head .button_icon {
  2863. height: 1.2em;
  2864. width: 1.2em;
  2865. fill: var(--btn-color);
  2866. }
  2867. #code_list {
  2868. background-color: #545454;
  2869. }
  2870. #input_parts a {
  2871. margin: 2pt 5pt;
  2872. text-decoration: underline;
  2873. }
  2874. .file_list_shell {
  2875. border-bottom: 1px solid var(--tool-line-color);
  2876. }
  2877. #footer_nav {
  2878. display: none;
  2879. }