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