style.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  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(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. a:link,
  88. a:visited {
  89. color: var(--link-color);
  90. text-decoration: none;
  91. cursor: pointer;
  92. }
  93. a:focus {
  94. outline: 1px dotted;
  95. }
  96. a:hover,
  97. a:active {
  98. color: var(--tool-link-hover-color);
  99. outline: none;
  100. }
  101. ::-webkit-scrollbar {
  102. width: 8px;
  103. height: 8px;
  104. /*display: none;*/
  105. }
  106. ::-webkit-scrollbar-thumb {
  107. -webkit-border-radius: 10px;
  108. border-radius: 10px;
  109. background: rgba(85, 85, 85, 0);
  110. }
  111. :hover::-webkit-scrollbar-thumb {
  112. -webkit-border-radius: 10px;
  113. border-radius: 10px;
  114. background: rgba(85, 85, 85, 0.4);
  115. }
  116. #editor_doc_title {
  117. position: absolute;
  118. margin-top: -1.4em;
  119. margin-left: 3em;
  120. }
  121. .toc {
  122. margin: 0;
  123. padding: 0;
  124. overflow-y: scroll;
  125. overflow-x: hidden;
  126. height: calc(100% - 3.5em);
  127. height: -moz-calc(100% - 3.5em);
  128. height: -webkit-calc(100% - 3.5em);
  129. width: auto;
  130. word-wrap: break-word;
  131. }
  132. #menubartoolbar {
  133. border-top: 1px solid var(--tool-bg-color3);
  134. border-bottom: 1px solid var(--tool-bg-color3);
  135. padding: 0px;
  136. background-color: var(--tool-bg-color);
  137. display: -webkit-flex;
  138. display: -moz-flex;
  139. display: flex;
  140. }
  141. #menubartoolbar:hover select {
  142. background-color: var(--input-bg-color);
  143. color: var(--btn-hover-color);
  144. }
  145. #menubartoolbar select {
  146. width: 100%;
  147. height: 80px;
  148. padding: 0 15px;
  149. border: 0;
  150. background-color: var(--tool-bg-color);
  151. border-radius: 0;
  152. -webkid-border-radius: 0;
  153. font-weight: 400;
  154. font-size: 150%;
  155. color: var(--tool-color);
  156. margin: 0;
  157. }
  158. #menubartoolbar select option {
  159. background-color: var(--tool-bg-color);
  160. color: var(--tool-color);
  161. }
  162. #leftmenuinner {
  163. color: var(--tool-color);
  164. background-color: var(--tool-bg-color);
  165. position: fixed;
  166. display: inline-block;
  167. top: 3.5em;
  168. left: 0;
  169. padding: 0;
  170. height: 100%;
  171. max-width: 40em;
  172. width: auto;
  173. float: left;
  174. z-index: 15;
  175. -webkit-transition-duration: 0.4s;
  176. transition-duration: 0.4s;
  177. }
  178. .viewswitch_on {
  179. -webkit-transform: translateX(0em);
  180. -moz-transform: translateX(0em);
  181. transform: translateX(0em);
  182. /*box-shadow: 5px 0 20px 5px var(--shadow-color);*/
  183. }
  184. .viewswitch_off {
  185. -webkit-transform: translateX(-42em);
  186. -moz-transform: translateX(-42em);
  187. transform: translateX(-42em);
  188. }
  189. #leftmenuinner h1 {
  190. display: none;
  191. }
  192. #leftmenuinnerinner {
  193. min-width: 20em;
  194. max-width: 100%;
  195. }
  196. #id_info_panal {
  197. position: fixed;
  198. height: 0px;
  199. bottom: 0px;
  200. left: 0px;
  201. /*padding: 3px 10px;*/
  202. width: 100%;
  203. background-color: var(--info-bg-color);
  204. border-top: 1px solid var(--border-line-color);
  205. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  206. z-index: 20;
  207. -webkit-transition-duration: 0.4s;
  208. transition-duration: 0.4s;
  209. -webkit-contain: strict;
  210. contain: strict;
  211. }
  212. #id_info_panal_inner {
  213. padding: 20px;
  214. height: calc(100% - 30px);
  215. width: 100%;
  216. overflow-y: auto;
  217. }
  218. .mainview {
  219. background-color: var(--bg-color);
  220. padding: 0 50px;
  221. z-index: 1;
  222. float: left;
  223. -webkit-transition-duration: 0.4s;
  224. transition-duration: 0.4s;
  225. -webkit-contains: layout;
  226. -moz-contains: layout;
  227. contains: layout;
  228. width: 100%;
  229. }
  230. #body_mainview {
  231. }
  232. .toc .tocitems p {
  233. font-size: 90%;
  234. margin: 4px 0 4px 0.5em;
  235. line-height: 1.2;
  236. }
  237. #content {
  238. margin: 0px 5px 10px 5px;
  239. padding: 1px 3px;
  240. }
  241. #navi_bookmark {
  242. display: none;
  243. }
  244. #navi_note {
  245. display: none;
  246. }
  247. #toolbar {
  248. position: fixed;
  249. top: 0;
  250. left: 0;
  251. background-color: var(--tool-bg-color);
  252. color: var(--tool-color);
  253. width: 100%;
  254. font-size: 100%;
  255. z-index: 17;
  256. height: 3.5em;
  257. display: -webkit-flex;
  258. display: -moz-flex;
  259. display: flex;
  260. -webkit-align-items: center;
  261. -moz-align-items: center;
  262. align-items: center;
  263. -webkit-justify-content: space-between;
  264. -moz-justify-content: space-between;
  265. justify-content: space-between;
  266. padding: 0 10px 0 16px;
  267. border-bottom: 1px solid var(--tool-bg-color3);
  268. }
  269. #toolbar::-webkit-scrollbar {
  270. display: none;
  271. }
  272. .toolgroup1 {
  273. min-width: 7em;
  274. display: -webkit-flex;
  275. display: -moz-flex;
  276. display: flex;
  277. -webkit-justify-content: flex-end;
  278. -moz-justify-content: flex-end;
  279. justify-content: flex-end;
  280. -webkit-align-items: center;
  281. -moz-align-items: center;
  282. align-items: center;
  283. flex-wrap: nowrap;
  284. }
  285. .index_toolbar {
  286. height: 3.5em;
  287. width: 100%;
  288. top: 0;
  289. left: 0;
  290. margin: 0;
  291. /*text-align: center;*/
  292. padding: 0 10px;
  293. position: fixed;
  294. border-bottom: 1px solid var(--input-bg-color);
  295. background-color: var(--tool-bg-color);
  296. display: -webkit-flex;
  297. display: -moz-flex;
  298. display: flex;
  299. -webkit-align-items: center;
  300. -moz-align-items: center;
  301. align-items: center;
  302. -webkit-justify-content: space-between;
  303. -moz-justify-content: space-between;
  304. justify-content: space-between;
  305. z-index: 2;
  306. }
  307. .debug_info {
  308. position: fixed;
  309. left: 0;
  310. top: 0;
  311. opacity: 1;
  312. width: 100%;
  313. height: 100%;
  314. background-color: rgba(25, 25, 25, 0.4);
  315. display: none;
  316. -webkit-align-items: center;
  317. -moz-align-items: center;
  318. -webkit-justify-content: center;
  319. -moz-justify-content: center;
  320. justify-content: center;
  321. z-index: 21;
  322. }
  323. .debug_info #debug {
  324. background-color: var(--tool-bg-color);
  325. color: var(--tool-color);
  326. font-size: 120%;
  327. font-weight: 400;
  328. border-radius: 4px;
  329. height: 150px;
  330. min-width: 300px;
  331. padding: 30px;
  332. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  333. display: -webkit-flex;
  334. display: -moz-flex;
  335. display: flex;
  336. -webkit-align-items: center;
  337. -moz-align-items: center;
  338. -webkit-justify-content: center;
  339. -moz-justify-content: center;
  340. justify-content: center;
  341. }
  342. #word_table {
  343. }
  344. #sutta_text {
  345. margin-bottom: 30em;
  346. }
  347. .sutta_title {
  348. color: var(--main-color);
  349. width: 100%;
  350. border-left: 15px solid #bbb;
  351. margin: 30px 0 20px 0;
  352. padding: 1px 0.5em;
  353. }
  354. .sutta_title a {
  355. float: right;
  356. }
  357. .tran_h1_cn,
  358. .tran_h1_en {
  359. font-size: 100%;
  360. font-weight: 400;
  361. line-height: 1.1;
  362. margin: 0px 2px;
  363. }
  364. .sutta_paragraph,
  365. .pardiv {
  366. width: 100%;
  367. margin-bottom: 3em;
  368. display: -webkit-inline-flex;
  369. display: -moz-inline-flex;
  370. display: inline-flex;
  371. flex-wrap: wrap;
  372. }
  373. .pardiv {
  374. }
  375. .wbwparblock,
  376. .wbwdiv {
  377. display: -webkit-inline-flex;
  378. display: -moz-inline-flex;
  379. display: inline-flex;
  380. -webkit-align-items: flex-start;
  381. -moz-align-items: flex-start;
  382. align-items: flex-start;
  383. -webkit-flex-wrap: wrap;
  384. -moz-flex-wrap: wrap;
  385. flex-wrap: wrap;
  386. width: 100%;
  387. }
  388. .wbwdiv {
  389. -webkit-flex: 7;
  390. -moz-flex: 7;
  391. flex: 7;
  392. }
  393. /*
  394. .pali_par_gatha {
  395. width: 50%;
  396. float: left;
  397. padding: 0;
  398. margin-left: 2em;
  399. }*/
  400. .trandiv {
  401. -webkit-flex: 3;
  402. -moz-flex: 3;
  403. flex: 3;
  404. padding: 0 5px;
  405. /*margin: 0 0 0 30%-220px;*/
  406. }
  407. .tran_par_en {
  408. font-size: 80%;
  409. text-indent: 0;
  410. margin-top: 0;
  411. }
  412. .tran_par_cn {
  413. font-size: 90%;
  414. text-indent: 0;
  415. margin-top: 0;
  416. }
  417. .tran_sent {
  418. }
  419. .tran_sent_inner {
  420. }
  421. .tran_sent textarea {
  422. background-color: #f8f8fa;
  423. color: black;
  424. border-color: silver;
  425. }
  426. .tran_sent_inner textarea {
  427. background-color: #f8f8fa;
  428. color: black;
  429. border-color: silver;
  430. }
  431. .tran_sent_pre {
  432. }
  433. .tran_sen_textarea {
  434. }
  435. .par_note,
  436. .wnotediv {
  437. /*display: none;*/
  438. line-height: 1.3em;
  439. background-color: var(--bg-color);
  440. /*position: absolute;*/
  441. flex: 0 0 100%;
  442. font-size: 85%;
  443. margin: 12px 0px;
  444. padding: 5px 18px;
  445. }
  446. /*.par_note p, .wnotediv p {
  447. margin: 5px 2px;
  448. }*/
  449. .word {
  450. /*width: Auto;*/
  451. float: left;
  452. margin: 0 0 0.2em 0;
  453. padding-right: 0;
  454. max-width: 60vw;
  455. page-break-inside: avoid;
  456. }
  457. .word_punc {
  458. width: Auto;
  459. float: left;
  460. margin: 0;
  461. line-height: 1em;
  462. }
  463. .word_head_shell {
  464. border-bottom: 1px solid var(--tool-line-color);
  465. padding-bottom: 4px;
  466. }
  467. .word_head {
  468. padding-right: 0.5em;
  469. }
  470. .word_detail,
  471. .wbody {
  472. font-weight: 400;
  473. padding-right: 0.5em;
  474. padding-top: 0.2em;
  475. }
  476. .pali,
  477. .whead {
  478. font-weight: 500;
  479. font-size: 110%;
  480. padding: 0px 2px;
  481. margin: 0px;
  482. line-height: 1.5em;
  483. }
  484. .mean {
  485. line-height: 1em;
  486. font-weight: 400;
  487. font-size: 90%;
  488. margin: 0;
  489. clear: both;
  490. display: -webkit-flex;
  491. display: -moz-flex;
  492. display: flex;
  493. align-items: center;
  494. -webkit-justify-content: space-between;
  495. -moz-justify-content: space-between;
  496. justify-content: space-between;
  497. }
  498. .ID {
  499. font-size: 70%;
  500. margin: 0;
  501. float: none;
  502. clear: both;
  503. display: none;
  504. }
  505. .org,
  506. .om,
  507. .case {
  508. font-size: 80%;
  509. margin: 0.3em 0;
  510. clear: both;
  511. color: var(--detail-color);
  512. line-height: 1.3em;
  513. display: flex;
  514. }
  515. .om {
  516. }
  517. .case {
  518. }
  519. .org {
  520. }
  521. .v_bld {
  522. font-weight: 700;
  523. }
  524. .cell,
  525. .case .type {
  526. margin: 0 0.3em 0 1px;
  527. padding: 0px 2px;
  528. outline: 1px solid;
  529. outline-offset: -1px;
  530. line-height: 1.5em;
  531. }
  532. /*不确定的显示为红色*/
  533. .case_dropbtn .cell2 a {
  534. background-color: #f80;
  535. color: var(--btn-hover-color);
  536. font-weight: 400;
  537. line-height: 1em;
  538. z-index: 100;
  539. }
  540. .clr {
  541. -webkit-flex: 0 0 100%;
  542. -moz-flex: 0 0 100%;
  543. flex: 0 0 100%;
  544. }
  545. .enter {
  546. clear: left;
  547. }
  548. .tran_input {
  549. display: none;
  550. clear: both;
  551. }
  552. .hidden {
  553. display: none;
  554. }
  555. #modifywin {
  556. color: var(--tool-color);
  557. width: auto;
  558. background-color: var(--tool-bg-color3);
  559. position: absolute;
  560. border-radius: 5px;
  561. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  562. border-color: var(--btn-border-line-color);
  563. display: none;
  564. z-index: 52;
  565. }
  566. .wbw_selected {
  567. background: var(--tool-bg-color3);
  568. color: var(--bg-color);
  569. border-top-left-radius: 5px;
  570. border-top-right-radius: 5px;
  571. }
  572. #modifywin p {
  573. margin: 0;
  574. padding: 0;
  575. }
  576. #modifywin .modifybutton {
  577. padding: 5px 0;
  578. border-top: 1px solid var(--tool-line-color);
  579. background-color: var(--tool-bg-color);
  580. }
  581. #modifywin .modifybutton button {
  582. font-size: 70%;
  583. border-color: var(--tool-color);
  584. border-width: 1px;
  585. }
  586. #modifywin .modifybutton button:hover {
  587. border-color: var(--link-color);
  588. background-color: var(--link-color);
  589. border-width: 1px;
  590. }
  591. #modify_detaile,
  592. #modify_bookmark,
  593. #modify_note,
  594. #modify_spell {
  595. display: none;
  596. padding: 10px 15px;
  597. color: var(--btn-color);
  598. background-color: var(--tool-bg-color);
  599. }
  600. #modify_detaile {
  601. display: block;
  602. }
  603. .modifycancel {
  604. font-size: 100%;
  605. padding: 10px;
  606. border-top: 1px solid var(--tool-line-color);
  607. }
  608. #modify_apply {
  609. padding: 0 15px;
  610. background-color: var(--tool-bg-color);
  611. border-bottom-right-radius: 5px;
  612. border-bottom-left-radius: 5px;
  613. }
  614. .bookmarkcolorblock {
  615. color: #009191;
  616. padding: 0;
  617. width: 2.5em;
  618. height: auto;
  619. display: inline-flex;
  620. margin: 0;
  621. text-align: center;
  622. line-height: 1.5em;
  623. }
  624. /*?a?自动匹配*/
  625. .bookmarkcolora {
  626. /*background-color: var(--booka);*/
  627. background: linear-gradient(85deg, rgba(255, 255, 255, 0), rgb(230, 240, 255));
  628. }
  629. /*?x?没找到*/
  630. .bookmarkcolorx {
  631. background: linear-gradient(85deg, rgba(255, 255, 255, 0), var(--bookx));
  632. }
  633. .bookmarkcolor1 {
  634. background: linear-gradient(85deg, rgba(255, 255, 255, 0), #f99);
  635. }
  636. .bookmarkcolor2 {
  637. background: linear-gradient(85deg, rgba(255, 255, 255, 0), #ff9);
  638. }
  639. .bookmarkcolor3 {
  640. background: linear-gradient(85deg, rgba(255, 255, 255, 0), #9f9);
  641. }
  642. .bookmarkcolor4 {
  643. background: linear-gradient(85deg, rgba(255, 255, 255, 0), #9ff);
  644. }
  645. .bookmarkcolor5 {
  646. background: linear-gradient(85deg, rgba(255, 255, 255, 0), #99f);
  647. }
  648. .bookmarkcolor0 {
  649. background: linear-gradient(85deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0));
  650. }
  651. .bookmarkcolora,
  652. .bookmarkcolorx,
  653. .bookmarkcolor0,
  654. .bookmarkcolor1,
  655. .bookmarkcolor2,
  656. .bookmarkcolor3,
  657. .bookmarkcolor4,
  658. .bookmarkcolor5 {
  659. padding: 0px 2px;
  660. }
  661. .bma {
  662. display: none;
  663. }
  664. .bmx {
  665. display: flex;
  666. }
  667. .bm1 {
  668. display: flex;
  669. }
  670. .bm2 {
  671. display: flex;
  672. }
  673. .bm3 {
  674. display: flex;
  675. }
  676. .bm4 {
  677. display: flex;
  678. }
  679. .bm5 {
  680. display: flex;
  681. }
  682. /*未操作*/
  683. .status_bg_color_0,
  684. .status_bg_color_1 {
  685. background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--bookx));
  686. }
  687. /*自动匹配*/
  688. .status_bg_color_2,
  689. /*他人自动*/
  690. .status_bg_color_3
  691. /*自己自动*/ {
  692. background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(230, 240, 255));
  693. }
  694. /*手动刷*/
  695. .status_bg_color_4,
  696. /*他人*/
  697. .status_bg_color_5
  698. /*自己*/ {
  699. background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(230, 240, 255));
  700. }
  701. /*手动*/
  702. .status_bg_color_6,
  703. /*他人*/
  704. .status_bg_color_7
  705. /*自己*/ {
  706. background: none;
  707. }
  708. #navi_bookmark_inner h3 {
  709. font-size: 100%;
  710. font-weight: 700;
  711. }
  712. .indexbody {
  713. display: flex;
  714. align-items: center;
  715. flex-direction: column;
  716. margin: 0;
  717. padding: 0;
  718. background-color: var(--tool-bg-color3);
  719. color: var(--btn-color);
  720. }
  721. #file_list_body {
  722. margin: 0;
  723. padding: 0;
  724. background-color: var(--tool-bg-color3);
  725. color: var(--btn-color);
  726. }
  727. #wizard_palicannon_par_select_toc select,
  728. #id_index_orderby,
  729. .indexbody select {
  730. width: auto;
  731. }
  732. /*.editor{
  733. display:inline;
  734. }*/
  735. .debugMsg {
  736. display: none;
  737. }
  738. /*
  739. table {
  740. border-collapse: collapse;
  741. background-color: #FFFFFF;
  742. width: 100%;
  743. }
  744. td,
  745. th {
  746. border: 1px solid #D2D2D2;
  747. font-size: 80%;
  748. vertical-align: baseline;
  749. }
  750. tr.h {
  751. background-color: #F5F5F5;
  752. font-weight: 500;
  753. color: #000000;
  754. }
  755. */
  756. .center {
  757. text-align: center;
  758. }
  759. .index_inner {
  760. margin-top: 5em;
  761. }
  762. #device {
  763. margin-right: 16px;
  764. }
  765. #device a:link,
  766. #device a:visited {
  767. color: #4688f1;
  768. text-decoration: none;
  769. }
  770. #device a:focus {
  771. outline: 1px dotted;
  772. }
  773. #device a:hover,
  774. #device a:active {
  775. color: #4688f1;
  776. outline: none;
  777. text-decoration: underline;
  778. }
  779. .select_mode a:link,
  780. #device a:visited {
  781. color: #aaa;
  782. text-decoration: none;
  783. }
  784. .select_mode a:focus {
  785. outline: 1px dotted;
  786. }
  787. .select_mode a:hover,
  788. #device a:active {
  789. color: #000;
  790. outline: none;
  791. text-decoration: underline;
  792. }
  793. button,
  794. input[type="button"],
  795. input[type="submit"] {
  796. font-weight: 500;
  797. font-size: 90%;
  798. background-color: none;
  799. border: 2px solid var(--btn-border-color);
  800. border-radius: 99px;
  801. margin: 2px;
  802. padding: 2px 12px;
  803. -webkit-transition-duration: 0.2s;
  804. -moz-transition-duration: 0.2s;
  805. transition-duration: 0.2s;
  806. cursor: pointer;
  807. display: -webkit-inline-flex;
  808. display: -moz-inline-flex;
  809. display: inline-flex;
  810. -webkit-align-items: center;
  811. -moz-align-items: center;
  812. align-items: center;
  813. -webkit-flex-wrap: nowrap;
  814. -moz-flex-wrap: nowrap;
  815. flex-wrap: nowrap;
  816. -webkit-justify-content: center;
  817. -moz-justify-content: center;
  818. justify-content: center;
  819. }
  820. button:hover,
  821. input[type="button"]:hover,
  822. input[type="submit"]:hover {
  823. background-color: var(--btn-border-color);
  824. color: var(--tool-color);
  825. }
  826. button .act {
  827. background-color: var(--btn-border-color);
  828. color: var(--tool-color);
  829. }
  830. button:disabled,
  831. input[type="button"]:disabled,
  832. input[type="submit"]:disabled {
  833. background-color: gainsboro;
  834. color: #878787;
  835. border-color: #878787;
  836. }
  837. input[type="submit"]:hover,
  838. input[type="submit"] {
  839. background-color: var(--link-hover-color);
  840. border-color: var(--link-hover-color);
  841. }
  842. .btn-group {
  843. position: relative;
  844. width: auto;
  845. display: -webkit-flex;
  846. display: -moz-flex;
  847. display: flex;
  848. -webkit-flex-wrap: nowrap;
  849. -moz-flex-wrap: nowrap;
  850. flex-wrap: nowrap;
  851. }
  852. /*
  853. .btn-group .btn+.btn {
  854. margin-right: -7px;
  855. }*/
  856. .btn-group > .btn:not(:first-child):not(:last-child) {
  857. border-radius: 0;
  858. }
  859. .btn-group > .btn:first-child:not(:last-child) {
  860. border-top-right-radius: 0;
  861. border-bottom-right-radius: 0;
  862. margin-right: -1px;
  863. }
  864. .btn-group > .btn:last-child:not(:first-child) {
  865. border-top-left-radius: 0;
  866. border-bottom-left-radius: 0;
  867. }
  868. /* 容器 <div> - 需要定位下拉内容 */
  869. .dropdown {
  870. position: relative;
  871. display: inline-flex;
  872. }
  873. /* 下拉内容 (默认隐藏) */
  874. .dropdown-content {
  875. border-radius: 3px;
  876. display: none;
  877. position: absolute;
  878. background-color: var(--tool-bg-color2);
  879. min-width: 60px;
  880. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  881. z-index: 6;
  882. top: 100%;
  883. right: 0;
  884. }
  885. /*使用一半宽度 (120/2 = 60) 来居中提示工具*/
  886. .dropdown-content::after {
  887. content: " ";
  888. position: absolute;
  889. bottom: 100%;
  890. right: 0;
  891. margin-right: 20px;
  892. border-width: 5px;
  893. border-style: solid;
  894. border-color: transparent transparent var(--tool-bg-color2) transparent;
  895. }
  896. /* 下拉菜单的链接 */
  897. .dropdown-content a {
  898. padding: 6px 6px;
  899. text-decoration: none;
  900. display: block;
  901. white-space: nowrap;
  902. color: var(--tool-color);
  903. }
  904. /* 鼠标移上去后修改下拉菜单链接颜色 */
  905. .dropdown-content a:hover {
  906. background-color: var(--btn-hover-bg-color);
  907. color: var(--btn-hover-color);
  908. border-radius: 3px;
  909. }
  910. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  911. .dropdown:hover .icon_btn {
  912. background-color: var(--btn-hover-bg-color);
  913. border-color: var(--btn-border-line-color);
  914. }
  915. .dropdown:hover .icon {
  916. fill: var(--btn-hover-color);
  917. }
  918. #file_new {
  919. width: 8em;
  920. }
  921. .tran_words {
  922. font-size: 80%;
  923. border-width: 1px;
  924. border-style: solid;
  925. border-color: blue;
  926. padding: 4px;
  927. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  928. border-radius: 4px;
  929. }
  930. .submenu {
  931. background-color: var(--tool-bg-color3);
  932. border-radius: 6px;
  933. color: var(--tool-color);
  934. margin: 4px 0;
  935. transition: all 0.4s ease;
  936. }
  937. .submenu_title {
  938. display: flex;
  939. color: var(--btn-color);
  940. background-color: unset;
  941. padding: 8px 12px;
  942. cursor: pointer;
  943. /*width: 100%;*/
  944. margin: 0px;
  945. align-items: center;
  946. justify-content: space-between;
  947. }
  948. .submenu_title:hover {
  949. color: var(--tool-color);
  950. }
  951. .submenu_title:hover .icon {
  952. fill: var(--tool-color);
  953. }
  954. .submenu_details {
  955. opacity: 0;
  956. max-height: 0px;
  957. background-color: var(--tool-bg-color1);
  958. color: var(--btn-color);
  959. font-weight: 400;
  960. border-bottom-left-radius: 6px;
  961. border-bottom-right-radius: 6px;
  962. padding: 0px;
  963. width: 100%;
  964. transition: all 0.4s ease;
  965. overflow: hidden;
  966. }
  967. #btn_close_printprev {
  968. position: fixed;
  969. background-color: rgba(0, 0, 0, 0);
  970. width: 2.5em;
  971. height: 2.5em;
  972. font-size: 2em;
  973. color: #fff;
  974. display: block;
  975. }
  976. #btn_close_printprev a {
  977. width: 2em;
  978. height: 2em;
  979. text-decoration: none;
  980. color: rgba(0, 0, 0, 0);
  981. }
  982. #btn_close_printprev a:hover {
  983. color: #fff;
  984. text-decoration: none;
  985. }
  986. input[type="text"],
  987. input[type="input"],
  988. input[type="password"],
  989. textarea {
  990. font-weight: 400;
  991. color: var(--tool-color);
  992. width: 100%;
  993. background-color: var(--input-bg-color);
  994. border: 1px solid var(--btn-border-line-color);
  995. border-radius: 4px;
  996. padding: 0.2em 0.2em;
  997. font-size: 100%;
  998. min-height: 1.2em;
  999. margin: 2px 0;
  1000. }
  1001. select {
  1002. font-weight: 400;
  1003. background-color: var(--select-bg-color);
  1004. border: 1px solid var(--btn-border-color);
  1005. padding: 2px 4px;
  1006. min-height: 2em;
  1007. border-radius: 4px;
  1008. cursor: pointer;
  1009. margin: 3px 0;
  1010. /*width: 100%;*/
  1011. }
  1012. select option {
  1013. color: var(--main-color);
  1014. background-color: var(--bg-color);
  1015. }
  1016. #basic_dict_list p {
  1017. padding: 0px;
  1018. margin: 2px 4px;
  1019. }
  1020. .grm_add_mean {
  1021. color: #bd8b18;
  1022. }
  1023. .grm_add_mean_user {
  1024. color: var(--mean-user-color);
  1025. }
  1026. /* 下拉按钮样式 */
  1027. .case_dropbtn {
  1028. }
  1029. .case_dropdown .case_dropbtn {
  1030. display: flex;
  1031. cursor: pointer;
  1032. margin: 0px;
  1033. }
  1034. /* 容器 <div> - 需要定位下拉内容 */
  1035. .case_dropdown {
  1036. padding: 0;
  1037. cursor: pointer;
  1038. min-width: 1em;
  1039. }
  1040. .gramma_selector {
  1041. padding-right: 2em;
  1042. min-width: unset;
  1043. }
  1044. /* 下拉内容 (默认隐藏) */
  1045. .case_dropdown-content {
  1046. margin: 0.3em;
  1047. display: none;
  1048. position: absolute;
  1049. background-color: var(--drop-bg-color);
  1050. min-width: 8em;
  1051. max-width: 35em;
  1052. margin: -1px 0px;
  1053. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  1054. color: var(--main-color);
  1055. z-index: 200;
  1056. padding: 0 0.2em;
  1057. }
  1058. .case_dropdown-title {
  1059. padding: 0.1em 0.1em;
  1060. display: flex;
  1061. text-align: left;
  1062. background-color: #fdfdbf;
  1063. font-size: 80%;
  1064. cursor: default;
  1065. font-weight: 500;
  1066. align-items: center;
  1067. justify-content: flex-end;
  1068. cursor: pointer;
  1069. }
  1070. .case_dropdown-detail {
  1071. font-size: 100%;
  1072. opacity: 0;
  1073. max-height: 0px;
  1074. padding: 0px;
  1075. /*width: 100%;*/
  1076. transition: all 0.4s ease;
  1077. overflow: hidden;
  1078. }
  1079. .case_dropdown-content .case_dropdown-detail a {
  1080. display: flex;
  1081. flex-wrap: wrap;
  1082. }
  1083. .case_dropdown-content .case_dropdown-detail a:hover {
  1084. cursor: default;
  1085. background-color: unset;
  1086. color: unset;
  1087. }
  1088. .case_dropdown-org > .case_dropdown-base > .case_dropdown-detail,
  1089. .case_dropdown-org > .case_dropdown-first:first-child > .case_dropdown-detail {
  1090. opacity: 1;
  1091. max-height: 200em;
  1092. padding: 10px;
  1093. transition: all 0.4s ease;
  1094. overflow: hidden;
  1095. }
  1096. .case_dropdown-org > .case_dropdown-base > .case_dropdown-title > .icon,
  1097. .case_dropdown-org > .case_dropdown-first:first-child > .case_dropdown-title > .icon {
  1098. transform: rotate(45deg);
  1099. }
  1100. .case_dropdown-org {
  1101. cursor: default;
  1102. }
  1103. /* 下拉菜单的链接 */
  1104. .case_dropdown-content a {
  1105. /*padding: 0.3em 0.4em;*/
  1106. line-height: 160%;
  1107. text-decoration: none;
  1108. display: flex;
  1109. cursor: pointer;
  1110. text-align: left;
  1111. }
  1112. /* 鼠标移上去后修改下拉菜单链接颜色 */
  1113. .case_dropdown-content a:hover {
  1114. background-color: var(--link-color);
  1115. color: var(--btn-hover-color);
  1116. }
  1117. /* 在鼠标移上去后显示下拉菜单 */
  1118. .case_dropdown:hover .case_dropdown-content {
  1119. display: block;
  1120. }
  1121. .trandiv .icon {
  1122. fill: var(--btn-border-color);
  1123. }
  1124. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  1125. .case_dropdown:hover .case_dropbtn {
  1126. opacity: 0.4;
  1127. }
  1128. .wbody:hover .edit_icon {
  1129. opacity: 1;
  1130. }
  1131. #modify_detaile:hover .edit_icon {
  1132. opacity: 1;
  1133. }
  1134. #id_dict_matched dict {
  1135. padding: 0px;
  1136. margin: 6px 0 0 0;
  1137. font-size: 1em;
  1138. display: block;
  1139. border-bottom: 2px solid #00f;
  1140. }
  1141. #id_dict_matched dict span {
  1142. background: #00f;
  1143. color: #fff;
  1144. }
  1145. #id_dict_matched pali {
  1146. padding: 0px;
  1147. margin: 0px;
  1148. font-size: 0.9em;
  1149. font-weight: 700;
  1150. display: block;
  1151. background: #ccf;
  1152. }
  1153. #id_dict_matched pali:hover {
  1154. background: #aaf;
  1155. }
  1156. #id_dict_matched org {
  1157. padding: 0px;
  1158. margin: 0px;
  1159. font-size: 0.8em;
  1160. display: block;
  1161. background: #cdf;
  1162. }
  1163. #id_dict_matched org:hover {
  1164. background: #aaf;
  1165. }
  1166. #id_dict_matched mean {
  1167. padding: 0px;
  1168. margin: 0px;
  1169. font-size: 0.8em;
  1170. display: block;
  1171. background: #ccf;
  1172. background: #cdf;
  1173. }
  1174. #id_dict_matched mean:hover {
  1175. background: #aaf;
  1176. }
  1177. #id_dict_matched case {
  1178. padding: 0px;
  1179. margin: 0 0 4px 0;
  1180. font-size: 0.8em;
  1181. display: block;
  1182. background: #cdf;
  1183. }
  1184. #id_dict_matched case:hover {
  1185. background: #aaf;
  1186. }
  1187. /*
  1188. #modify_bookmark div {
  1189. padding: 5px;
  1190. }
  1191. #modify_bookmark div span {
  1192. cursor: pointer;
  1193. border-radius: 4px;
  1194. border: 1px solid #FFF;
  1195. }
  1196. #modify_bookmark div span:hover {
  1197. border: 1px solid #000000;
  1198. }
  1199. /* option tab css */
  1200. ul,
  1201. li {
  1202. white-space: normal;
  1203. color: inherit;
  1204. margin: 0px;
  1205. padding: 0px;
  1206. word-break: keep-all;
  1207. text-overflow: ellipsis;
  1208. }
  1209. .bookmark-tab {
  1210. position: relative;
  1211. height: 100%;
  1212. }
  1213. .bookmark-tab li {
  1214. font-size: 12px;
  1215. cursor: pointer;
  1216. outline-offset: -2px;
  1217. outline-color: var(--main-color);
  1218. }
  1219. .bookmark-tab li:hover {
  1220. box-shadow: 0 0 0 0.1em var(--link-color) inset;
  1221. }
  1222. .gramma-tab {
  1223. position: relative;
  1224. height: 100%;
  1225. border-bottom: 1px solid #555;
  1226. margin: 3px 0px;
  1227. }
  1228. .gramma-tab li {
  1229. padding: 4px 5px;
  1230. display: inline-block;
  1231. font-size: 0.8em;
  1232. text-align: center;
  1233. margin-left: 0px;
  1234. margin-right: 0px;
  1235. cursor: pointer;
  1236. height: 100%;
  1237. line-height: 1em;
  1238. margin-bottom: 4px;
  1239. border: 1px solid #fff;
  1240. border-radius: 3px;
  1241. transition: all ease 0.3s;
  1242. }
  1243. .gramma-tab li:first-child {
  1244. margin-left: 0px;
  1245. }
  1246. .gramma-tab li:hover {
  1247. }
  1248. .common-tab {
  1249. text-align: center;
  1250. width: auto;
  1251. position: relative;
  1252. height: 100%;
  1253. display: -webkit-flex;
  1254. display: -moz-flex;
  1255. display: flex;
  1256. align-items: flex-end;
  1257. color: var(--main-color);
  1258. font-weight: 500;
  1259. background-color: var(--tool-bg-color3);
  1260. z-index: 11;
  1261. border-top-right-radius: 5px;
  1262. border-top-left-radius: 5px;
  1263. }
  1264. .common-tab_li {
  1265. color: var(--btn-color);
  1266. margin: 0;
  1267. height: auto;
  1268. padding: 0.5em 0.5em 0.3em;
  1269. display: inline-block;
  1270. cursor: pointer;
  1271. border: 1px solid var(--nocolor);
  1272. border-bottom: 0px;
  1273. }
  1274. .common-tab .act {
  1275. color: var(--tool-color);
  1276. margin: 0;
  1277. height: auto;
  1278. padding: 0.5em 0.5em 0.3em;
  1279. display: inline-block;
  1280. cursor: pointer;
  1281. box-shadow: 0 1px 0 0 var(--tool-bg-color);
  1282. background-color: var(--tool-bg-color);
  1283. border: 1px solid var(--nocolor);
  1284. border-bottom: 0.2em solid var(--link-color);
  1285. border-top-right-radius: 4px;
  1286. border-top-left-radius: 4px;
  1287. }
  1288. .common-tab_li_act {
  1289. color: var(--tool-color);
  1290. margin: 0;
  1291. height: auto;
  1292. padding: 0.5em 0.5em 0.3em;
  1293. display: inline-block;
  1294. cursor: pointer;
  1295. box-shadow: 0 1px 0 0 var(--tool-bg-color);
  1296. background-color: var(--tool-bg-color);
  1297. border: 1px solid var(--nocolor);
  1298. border-bottom: 0.2em solid var(--link-color);
  1299. border-top-right-radius: 4px;
  1300. border-top-left-radius: 4px;
  1301. }
  1302. /*
  1303. .common-tab li:first-child {
  1304. margin-left: 0px;
  1305. }
  1306. .common-tab li:last-child {
  1307. margin-right: 0px;
  1308. }
  1309. */
  1310. .common-tab_li:hover {
  1311. background-color: var(--btn-hover-bg-color);
  1312. border-bottom: 0.2em solid var(--tool-line-color);
  1313. border-top-right-radius: 5px;
  1314. border-top-left-radius: 5px;
  1315. }
  1316. .tab_a {
  1317. text-align: center;
  1318. width: auto;
  1319. position: relative;
  1320. height: 100%;
  1321. display: -webkit-flex;
  1322. display: -moz-flex;
  1323. display: flex;
  1324. margin: 5px 15px 0 5px;
  1325. align-items: flex-end;
  1326. color: var(--main-color);
  1327. font-weight: 500;
  1328. }
  1329. .tab_a li {
  1330. color: var(--btn-color);
  1331. margin: 0;
  1332. padding: 8px 10px;
  1333. display: inline-block;
  1334. cursor: pointer;
  1335. border: 3px solid var(--nocolor);
  1336. border-bottom: 0px;
  1337. }
  1338. .tab_a li:hover {
  1339. background-color: var(--btn-hover-bg-color);
  1340. border-bottom: 3px solid var(--tool-line-color);
  1341. }
  1342. .tab_a .act {
  1343. color: var(--tool-color);
  1344. margin: 0;
  1345. padding: 8px 10px;
  1346. display: inline-block;
  1347. cursor: pointer;
  1348. border-bottom: 3px solid var(--link-color);
  1349. }
  1350. .tab_b {
  1351. text-align: center;
  1352. width: auto;
  1353. position: relative;
  1354. height: 100%;
  1355. display: -webkit-flex;
  1356. display: -moz-flex;
  1357. display: flex;
  1358. margin: 5px;
  1359. align-items: flex-end;
  1360. color: var(--main-color);
  1361. font-weight: 500;
  1362. }
  1363. .tab_b li {
  1364. color: var(--btn-color);
  1365. margin: 0;
  1366. padding: 2px 10px;
  1367. display: inline-block;
  1368. cursor: pointer;
  1369. border: 1px solid var(--link-color);
  1370. }
  1371. .tab_b li:hover {
  1372. color: var(--tool-color);
  1373. background-color: var(--link-color);
  1374. }
  1375. .tab_b .act {
  1376. color: var(--tool-color);
  1377. background-color: var(--link-color);
  1378. }
  1379. #export_data {
  1380. display: none;
  1381. }
  1382. .dict_row0 {
  1383. background: #fff;
  1384. }
  1385. .dict_row-1 {
  1386. background: #ffd;
  1387. }
  1388. .dict_row-2 {
  1389. background: #ffb;
  1390. }
  1391. .dict_row0 {
  1392. background: #fff;
  1393. }
  1394. .dict_row1 {
  1395. background: #ffd;
  1396. }
  1397. .dict_row2 {
  1398. background: #ffb;
  1399. }
  1400. .dict_row3 {
  1401. background: #ff9;
  1402. }
  1403. .dict_row4 {
  1404. background: #ff7;
  1405. }
  1406. .dict_row5 {
  1407. background: #ff5;
  1408. }
  1409. .dict_row6 {
  1410. background: #ff3;
  1411. }
  1412. .dict_row_new {
  1413. background: #f5f5f5;
  1414. width: auto;
  1415. }
  1416. .word_parent {
  1417. margin: 2px;
  1418. padding: 2px;
  1419. font-size: 80%;
  1420. }
  1421. .word_current {
  1422. margin: 2px;
  1423. padding-left: 0.5em;
  1424. font-size: 100%;
  1425. font-weight: 700;
  1426. }
  1427. .word_child {
  1428. margin: 2px;
  1429. padding-left: 2em;
  1430. font-size: 80%;
  1431. }
  1432. .mean_block span {
  1433. background-color: #aaf;
  1434. margin: 0;
  1435. padding: 0 3px;
  1436. border-radius: 4px;
  1437. }
  1438. /*
  1439. .mean_block span:hover,
  1440. span:active {
  1441. cursor: pointer;
  1442. background-color: #E0DDDD;
  1443. margin: 0;
  1444. padding: 0 3px;
  1445. border-radius: 4px;
  1446. }*/
  1447. .fun_block {
  1448. background-color: var(--tool-bg-color);
  1449. color: var(--tool-color);
  1450. width: 65em;
  1451. max-width: 95%;
  1452. padding: 20px 40px;
  1453. margin-bottom: 20px;
  1454. border-radius: 8px;
  1455. text-align: left;
  1456. }
  1457. .fun_block h2 {
  1458. border-bottom: 1px solid var(--tool-line-color);
  1459. margin-bottom: 1em;
  1460. padding-bottom: 10px;
  1461. font-size: 120%;
  1462. color: var(--tool-color);
  1463. }
  1464. .file_list_block {
  1465. background-color: var(--tool-bg-color);
  1466. color: var(--tool-color);
  1467. width: 65em;
  1468. max-width: 95%;
  1469. border-radius: 6px;
  1470. text-align: left;
  1471. }
  1472. .file_list_block .tool_bar {
  1473. width: 100%;
  1474. padding: 12px 18px;
  1475. text-align: left;
  1476. font-size: 120%;
  1477. display: flex;
  1478. justify-content: space-between;
  1479. }
  1480. #userfilelist {
  1481. display: inline-block;
  1482. width: 100%;
  1483. }
  1484. #id_app_name {
  1485. font-size: 200%;
  1486. font-weight: 400;
  1487. color: #1eafff;
  1488. padding: 25px 30px;
  1489. }
  1490. .mean_cell {
  1491. display: inline-block;
  1492. cursor: pointer;
  1493. border: black solid thin;
  1494. margin: 2px 2px;
  1495. padding: 1px 0;
  1496. border-radius: 4px;
  1497. background-color: #ececec;
  1498. }
  1499. .mean_inner {
  1500. display: inline;
  1501. }
  1502. .mean_button {
  1503. display: none;
  1504. margin: 0;
  1505. padding: 1px 5px;
  1506. }
  1507. .mean_cell:hover .mean_button {
  1508. display: inline;
  1509. }
  1510. .mean_button:hover {
  1511. background-color: #3e8e41;
  1512. }
  1513. .button_shell {
  1514. display: inline-block;
  1515. width: 1em;
  1516. }
  1517. #id_text_edit_form textarea {
  1518. font-size: 16px;
  1519. width: 99%;
  1520. }
  1521. .debugMsg > textarea {
  1522. width: 60%;
  1523. }
  1524. /*
  1525. .submitbtn {
  1526. border: 1px solid #DCDCDC;
  1527. padding: 4px 8px;
  1528. font-size: 13px;
  1529. font-weight: 400;
  1530. min-height: 1em;
  1531. color: #009191;
  1532. background-color: #F9F9F9;
  1533. border-radius: 4px;
  1534. margin: 0 2px;
  1535. -webkit-transition-duration: 0.2s;
  1536. transition-duration: 0.2;
  1537. cursor: pointer;
  1538. }
  1539. .submitbtn:hover {
  1540. background-color: #4688F1;
  1541. border: 1px solid #4688F1;
  1542. color: #FFFFFF;
  1543. }
  1544. .tool_button {}
  1545. */
  1546. .edit_tran_button {
  1547. display: inline;
  1548. height: 1.5em;
  1549. padding: 0 5px;
  1550. margin: 0 3px 0 0;
  1551. opacity: 0.7;
  1552. }
  1553. .edit_tran_button:hover {
  1554. opacity: 1;
  1555. }
  1556. @keyframes viewbug {
  1557. 0% {
  1558. opacity: 0;
  1559. }
  1560. 40% {
  1561. opacity: 1;
  1562. }
  1563. 60% {
  1564. opacity: 1;
  1565. }
  1566. 100% {
  1567. opacity: 0;
  1568. }
  1569. }
  1570. .note_sen {
  1571. font-size: 90%;
  1572. color: var(--detail-color);
  1573. display: inline-block;
  1574. }
  1575. .comm_par {
  1576. font-size: 80%;
  1577. padding: 16px;
  1578. border-top: 1px solid var(--main-color);
  1579. border-bottom: 1px solid var(--main-color);
  1580. }
  1581. .imgbutton {
  1582. border: 0;
  1583. padding: 0;
  1584. opacity: 0.6;
  1585. }
  1586. .imgbutton:hover {
  1587. border: 0;
  1588. padding: 0;
  1589. opacity: 1;
  1590. background: none;
  1591. }
  1592. .imgbutton:hover .icon {
  1593. fill: var(--link-color);
  1594. }
  1595. .in_word_button {
  1596. margin: 0px 4px;
  1597. /*outline: 1px solid var(--detail-color);*/
  1598. outline-offset: -1px;
  1599. cursor: pointer;
  1600. padding: 0;
  1601. }
  1602. .in_word_button .icon {
  1603. fill: var(--detail-color);
  1604. }
  1605. .in_word_button:hover .icon {
  1606. fill: antiquewhite;
  1607. }
  1608. .un_pali {
  1609. color: #aaf;
  1610. }
  1611. .un_begin {
  1612. color: #aaf;
  1613. }
  1614. .un_end {
  1615. color: #aaf;
  1616. }
  1617. .paliword1 {
  1618. }
  1619. .paliword2 {
  1620. margin: 0.3em 0;
  1621. clear: left;
  1622. display: none;
  1623. }
  1624. /*
  1625. .mean table {
  1626. border-collapse: collapse;
  1627. background-color: #FFFFFF;
  1628. width: 100%;
  1629. }
  1630. .mean td,th {
  1631. border: 1px solid #D2D2D2;
  1632. font-size: 100%;
  1633. vertical-align: baseline;
  1634. }
  1635. .mean tr.h {
  1636. background-color: #F5F5F5;
  1637. font-weight: 500;
  1638. color: #000000;
  1639. }
  1640. */
  1641. #id_palicannon_index_filelist li {
  1642. margin-left: 1em;
  1643. overflow: hidden;
  1644. font-size: 95%;
  1645. }
  1646. #input_meaning {
  1647. width: auto;
  1648. }
  1649. #input_org {
  1650. width: auto;
  1651. }
  1652. #input_om {
  1653. width: auto;
  1654. display: none;
  1655. }
  1656. #input_case {
  1657. width: auto;
  1658. display: none;
  1659. }
  1660. .tocitems li {
  1661. overflow: hidden;
  1662. }
  1663. .toc_h_0 {
  1664. display: none;
  1665. }
  1666. .toc_h_1 {
  1667. padding-left: 0;
  1668. }
  1669. .toc_h_2 {
  1670. padding-left: 1em;
  1671. }
  1672. .toc_h_3 {
  1673. padding-left: 2em;
  1674. }
  1675. .toc_h_4 {
  1676. padding-left: 3em;
  1677. }
  1678. .head_par {
  1679. width: 100%;
  1680. font-weight: 700;
  1681. }
  1682. .head_par .head_pali_1 {
  1683. text-align: center;
  1684. font-size: 200%;
  1685. border-bottom: 3px solid var(--main-color);
  1686. }
  1687. .head_par .head_pali_2 {
  1688. text-align: center;
  1689. font-size: 150%;
  1690. }
  1691. .head_par .head_pali_3 {
  1692. font-size: 120%;
  1693. }
  1694. .head_par .head_pali_4 {
  1695. font-size: 100%;
  1696. }
  1697. #id_text_edit_form {
  1698. padding: 12px;
  1699. color: var(--btn-color);
  1700. background-color: var(--tool-bg-color);
  1701. width: 50%;
  1702. position: fixed;
  1703. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  1704. left: 200px;
  1705. top: 200px;
  1706. display: none;
  1707. z-index: 18;
  1708. border-radius: 2px;
  1709. }
  1710. #id_text_edit_author {
  1711. width: 300px;
  1712. }
  1713. #id_text_edit_language {
  1714. margin-right: 16px;
  1715. }
  1716. .dialog-title {
  1717. padding-bottom: 5px;
  1718. text-align: center;
  1719. vertical-align: middle;
  1720. width: 100%;
  1721. font-weight: 500;
  1722. }
  1723. #id_text_edit_caption {
  1724. display: flex;
  1725. flex-wrap: wrap;
  1726. cursor: move;
  1727. justify-content: space-between;
  1728. }
  1729. .blackscreen {
  1730. position: fixed;
  1731. left: 0;
  1732. top: 0;
  1733. width: 100%;
  1734. height: 100%;
  1735. background-color: rgba(25, 25, 25, 0);
  1736. display: none;
  1737. z-index: 14;
  1738. }
  1739. .nocolor {
  1740. opacity: 0;
  1741. }
  1742. .tree_expand {
  1743. padding: 5px 1px;
  1744. border: 1px solid #dcdcdc;
  1745. }
  1746. .pnotediv {
  1747. width: 100%;
  1748. padding: 5px;
  1749. box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
  1750. display: none;
  1751. }
  1752. .note_parblock:first-child {
  1753. border-top: none;
  1754. padding-top: 0;
  1755. }
  1756. .note_parblock {
  1757. border-bottom: var(--border);
  1758. padding: 1em 0;
  1759. }
  1760. .tran_parblock:first-child {
  1761. border-top: none;
  1762. padding-top: 0;
  1763. }
  1764. .tran_parblock {
  1765. border-top: var(--border);
  1766. padding: 1em 0;
  1767. }
  1768. .en_text {
  1769. font-size: 100%;
  1770. }
  1771. .zh_text {
  1772. font-size: 110%;
  1773. }
  1774. .tw_text {
  1775. font-size: 110%;
  1776. }
  1777. .wnotediv {
  1778. font-size: 85%;
  1779. border-left: 5px solid #cdc;
  1780. margin: 2px 5px 2px 1em;
  1781. padding: 2px;
  1782. clear: left;
  1783. /*max-height: 30vh;*/
  1784. }
  1785. .wnotediv p {
  1786. margin: 5px 2px;
  1787. }
  1788. .full_note_handle .full_note {
  1789. display: none;
  1790. }
  1791. /* 在鼠标移上去后显示下拉菜单 */
  1792. .full_note_handle:hover .full_note {
  1793. display: inline;
  1794. }
  1795. .edit_tool {
  1796. flex: 0 0 100%;
  1797. display: block;
  1798. margin: 0;
  1799. }
  1800. .edit_tool .icon {
  1801. height: 1em;
  1802. width: 1em;
  1803. }
  1804. .head_tool {
  1805. margin-top: 3em;
  1806. color: var(--detail-color);
  1807. }
  1808. .par_heading {
  1809. flex: 0 0 100%;
  1810. margin-bottom: 2em;
  1811. font-family: "Noto Serif", "Noto Sans TC", "Noto Sans SC";
  1812. }
  1813. .par_heading .heading_parblock_1_pali {
  1814. font-size: 170%;
  1815. font-weight: 700;
  1816. border-bottom: 1px solid var(--border-line-color);
  1817. }
  1818. .par_heading .heading_parblock_1_zh {
  1819. font-size: 110%;
  1820. font-weight: 700;
  1821. }
  1822. .par_heading .heading_parblock_1_tw {
  1823. font-size: 110%;
  1824. font-weight: 700;
  1825. }
  1826. .par_heading .heading_parblock_1_en {
  1827. font-size: 100%;
  1828. font-weight: 700;
  1829. }
  1830. .par_heading .heading_parblock_2_pali {
  1831. font-size: 160%;
  1832. font-weight: 700;
  1833. border-bottom: 1px solid var(--border-line-color);
  1834. }
  1835. .par_heading .heading_parblock_2_zh {
  1836. font-size: 110%;
  1837. font-weight: 700;
  1838. }
  1839. .par_heading .heading_parblock_2_tw {
  1840. font-size: 110%;
  1841. font-weight: 700;
  1842. }
  1843. .par_heading .heading_parblock_2_en {
  1844. font-size: 110%;
  1845. font-weight: 700;
  1846. }
  1847. .par_heading .heading_parblock_3_pali {
  1848. font-size: 130%;
  1849. font-weight: 700;
  1850. border-bottom: 1px solid var(--border-line-color);
  1851. }
  1852. .par_heading .heading_parblock_3_zh {
  1853. font-size: 100%;
  1854. font-weight: 700;
  1855. }
  1856. .par_heading .heading_parblock_3_tw {
  1857. font-size: 100%;
  1858. font-weight: 700;
  1859. }
  1860. .par_heading .heading_parblock_3_en {
  1861. font-size: 100%;
  1862. font-weight: 700;
  1863. }
  1864. .par_heading .heading_parblock_4_pali {
  1865. font-size: 110%;
  1866. font-weight: 700;
  1867. border-bottom: 1px solid var(--border-line-color);
  1868. }
  1869. .par_heading .heading_parblock_4_zh {
  1870. font-size: 90%;
  1871. font-weight: 700;
  1872. }
  1873. .par_heading .heading_parblock_4_tw {
  1874. font-size: 90%;
  1875. font-weight: 700;
  1876. }
  1877. .par_heading .heading_parblock_4_en {
  1878. font-size: 90%;
  1879. font-weight: 700;
  1880. }
  1881. .par_heading .heading_parblock_5_pali {
  1882. font-size: 110%;
  1883. font-weight: 700;
  1884. border-bottom: 1px solid var(--border-line-color);
  1885. }
  1886. .par_heading .heading_parblock_5_zh {
  1887. font-size: 90%;
  1888. font-weight: 700;
  1889. }
  1890. .par_heading .heading_parblock_5_tw {
  1891. font-size: 90%;
  1892. font-weight: 700;
  1893. }
  1894. .par_heading .heading_parblock_5_en {
  1895. font-size: 90%;
  1896. font-weight: 700;
  1897. }
  1898. .par_heading .heading_parblock_6_pali {
  1899. font-size: 110%;
  1900. font-weight: 700;
  1901. border-bottom: 1px solid var(--border-line-color);
  1902. }
  1903. .par_heading .heading_parblock_6_zh {
  1904. font-size: 90%;
  1905. font-weight: 700;
  1906. }
  1907. .par_heading .heading_parblock_6_tw {
  1908. font-size: 90%;
  1909. font-weight: 700;
  1910. }
  1911. .par_heading .heading_parblock_6_en {
  1912. font-size: 90%;
  1913. font-weight: 700;
  1914. }
  1915. .par_heading .heading_parblock_7_pali {
  1916. font-size: 110%;
  1917. font-weight: 700;
  1918. border-bottom: 1px solid var(--border-line-color);
  1919. }
  1920. .par_heading .heading_parblock_7_zh {
  1921. font-size: 90%;
  1922. font-weight: 700;
  1923. }
  1924. .par_heading .heading_parblock_7_tw {
  1925. font-size: 90%;
  1926. font-weight: 700;
  1927. }
  1928. .par_heading .heading_parblock_7_en {
  1929. font-size: 90%;
  1930. font-weight: 700;
  1931. }
  1932. .par_heading .heading_parblock_8_pali {
  1933. font-size: 110%;
  1934. font-weight: 700;
  1935. border-bottom: 1px solid var(--border-line-color);
  1936. }
  1937. .par_heading .heading_parblock_8_zh {
  1938. font-size: 90%;
  1939. font-weight: 700;
  1940. }
  1941. .par_heading .heading_parblock_8_tw {
  1942. font-size: 90%;
  1943. font-weight: 700;
  1944. }
  1945. .par_heading .heading_parblock_8_en {
  1946. font-size: 90%;
  1947. font-weight: 700;
  1948. }
  1949. .toc_heading {
  1950. padding: 0;
  1951. }
  1952. .toc_heading_0 {
  1953. display: none;
  1954. }
  1955. .toc_heading_1 {
  1956. padding-left: 0.5em;
  1957. padding-bottom: 0.3em;
  1958. }
  1959. .toc_heading_2 {
  1960. padding-left: 1em;
  1961. padding-bottom: 0.3em;
  1962. }
  1963. .toc_heading_3 {
  1964. padding-left: 1.5em;
  1965. padding-bottom: 0.3em;
  1966. }
  1967. .toc_heading_4 {
  1968. padding-left: 2em;
  1969. padding-bottom: 0.3em;
  1970. }
  1971. .toc_heading_5 {
  1972. padding-left: 2.5em;
  1973. padding-bottom: 0.3em;
  1974. }
  1975. .toc_heading_6 {
  1976. padding-left: 3em;
  1977. padding-bottom: 0.3em;
  1978. }
  1979. .toc_heading_7 {
  1980. padding-left: 3.5em;
  1981. padding-bottom: 0.3em;
  1982. }
  1983. .toc_heading_8 {
  1984. padding-left: 4em;
  1985. padding-bottom: 0.3em;
  1986. }
  1987. .toc_item {
  1988. display: block;
  1989. }
  1990. .toc_item_0 {
  1991. display: none;
  1992. }
  1993. .toc_item_1 {
  1994. padding-left: 0.5em;
  1995. padding-bottom: 0.3em;
  1996. }
  1997. .toc_item_2 {
  1998. padding-left: 1em;
  1999. padding-bottom: 0.3em;
  2000. }
  2001. .toc_item_3 {
  2002. padding-left: 1.5em;
  2003. padding-bottom: 0.3em;
  2004. }
  2005. .toc_item_4 {
  2006. padding-left: 2em;
  2007. padding-bottom: 0.3em;
  2008. }
  2009. .toc_item_5 {
  2010. padding-left: 2.5em;
  2011. padding-bottom: 0.3em;
  2012. }
  2013. .toc_item_6 {
  2014. padding-left: 3em;
  2015. padding-bottom: 0.3em;
  2016. }
  2017. .toc_item_7 {
  2018. padding-left: 3.5em;
  2019. padding-bottom: 0.3em;
  2020. }
  2021. .toc_item_8 {
  2022. padding-left: 4em;
  2023. padding-bottom: 0.3em;
  2024. }
  2025. .icon {
  2026. height: 20px;
  2027. width: 20px;
  2028. fill: var(--btn-color);
  2029. transition: all 0.2s ease;
  2030. }
  2031. .small_icon {
  2032. height: 1em;
  2033. width: 1em;
  2034. fill: var(--btn-color);
  2035. -webkit-transition-duration: 0.2s;
  2036. transition-duration: 0.2s;
  2037. }
  2038. .edit_icon {
  2039. opacity: 0;
  2040. height: 1.2em;
  2041. width: 1.2em;
  2042. fill: var(--link-color);
  2043. -webkit-transition-duration: 0.2s;
  2044. transition-duration: 0.2s;
  2045. }
  2046. .toolbtn {
  2047. display: none;
  2048. }
  2049. #word_table_inner table {
  2050. border-collapse: collapse;
  2051. background-color: #ffffff;
  2052. width: 100%;
  2053. }
  2054. #word_table_inner td,
  2055. th {
  2056. border: 1px solid #d2d2d2;
  2057. font-size: 80%;
  2058. vertical-align: baseline;
  2059. }
  2060. #word_table_inner tr.h {
  2061. background-color: #f5f5f5;
  2062. font-weight: 500;
  2063. color: #000000;
  2064. }
  2065. #menu_button_home {
  2066. margin-right: auto;
  2067. }
  2068. .border_right {
  2069. border-right: 1px solid var(--tool-line-color);
  2070. height: 1.8em;
  2071. margin: 0 10px 0 10px;
  2072. }
  2073. #wizard_div {
  2074. display: none;
  2075. width: 100%;
  2076. justify-content: center;
  2077. margin-top: 3.5em;
  2078. }
  2079. .editor_wizard {
  2080. display: inline-flex;
  2081. flex-wrap: wrap;
  2082. width: 100%;
  2083. }
  2084. #new_input_Tran1 {
  2085. display: none;
  2086. }
  2087. #new_input_Tran2 {
  2088. display: none;
  2089. }
  2090. .v_paranum {
  2091. color: #55f;
  2092. }
  2093. .v_note {
  2094. color: #51b351;
  2095. }
  2096. #id_heading_edit_level {
  2097. display: none;
  2098. }
  2099. #id_text_edit_delete {
  2100. background-color: #e6c9a4;
  2101. display: none;
  2102. }
  2103. .toc_heading td {
  2104. vertical-align: top;
  2105. }
  2106. .toc_heading_inner {
  2107. color: white;
  2108. }
  2109. .code_list_dropdown {
  2110. display: flex;
  2111. align-items: center;
  2112. white-space: nowrap;
  2113. margin: 0;
  2114. }
  2115. .project_res_add_author {
  2116. display: flex;
  2117. align-items: center;
  2118. white-space: nowrap;
  2119. margin: 0;
  2120. }
  2121. .editor_project_res_info input {
  2122. width: 100%;
  2123. }
  2124. #id_dict_curr_word_inner table {
  2125. }
  2126. #id_dict_curr_word_inner table {
  2127. border-collapse: collapse;
  2128. }
  2129. #id_dict_curr_word_inner td,
  2130. th {
  2131. border: 1px solid #000000;
  2132. font-size: 80%;
  2133. vertical-align: baseline;
  2134. }
  2135. #id_dict_curr_word_inner .h {
  2136. background-color: #9999cc;
  2137. font-weight: bold;
  2138. color: #000000;
  2139. }
  2140. /*
  2141. #id_dict_match_result table {border-collapse: collapse;}
  2142. #id_dict_match_result td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  2143. #id_dict_match_result .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  2144. */
  2145. .normal_table table {
  2146. border-collapse: collapse;
  2147. }
  2148. .normal_table td,
  2149. th {
  2150. border: 1px solid #000000;
  2151. font-size: 80%;
  2152. vertical-align: baseline;
  2153. }
  2154. .normal_table .h {
  2155. background-color: #9999cc;
  2156. font-weight: bold;
  2157. color: #000000;
  2158. }
  2159. .frame_table table {
  2160. border-collapse: collapse;
  2161. }
  2162. .frame_table td,
  2163. th {
  2164. border: 1px solid #fff;
  2165. font-size: 100%;
  2166. vertical-align: baseline;
  2167. }
  2168. #id_wizard_palicannon_index_filelist p {
  2169. margin: 0;
  2170. }
  2171. .search_title {
  2172. padding: 0.3em 0.6em;
  2173. line-height: 1.4em;
  2174. border-radius: 2px;
  2175. -webkit-transition-duration: 0.2s;
  2176. transition-duration: 0.2s;
  2177. display: -webkit-box;
  2178. display: -moz-box;
  2179. display: box;
  2180. word-break: keep-all;
  2181. overflow: hidden;
  2182. white-space: nowrap;
  2183. }
  2184. .pali_book_select .pali_book_item {
  2185. padding: 0.3em 0.6em;
  2186. line-height: 1.4em;
  2187. border-radius: 2px;
  2188. transition: all 0.4s ease;
  2189. cursor: pointer;
  2190. display: -webkit-box;
  2191. display: -moz-box;
  2192. display: box;
  2193. word-break: keep-all;
  2194. overflow: hidden;
  2195. white-space: nowrap;
  2196. }
  2197. .pali_book_select .pali_book_item:hover {
  2198. background-color: var(--tool-link-hover-color);
  2199. color: var(--btn-hover-color);
  2200. }
  2201. .pali_book_select {
  2202. overflow-x: hidden;
  2203. /*border-left: 1px solid var(--border-line-color);*/
  2204. max-width: 100%;
  2205. float: left;
  2206. }
  2207. .word_edit {
  2208. width: auto;
  2209. font-size: 80%;
  2210. padding: 2px 4px;
  2211. margin-bottom: 10px;
  2212. background-color: #e2f9e3;
  2213. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2214. }
  2215. .word_edit .word_edit_head {
  2216. border-bottom: 1px solid var(--border-line-color);
  2217. margin-bottom: 0.1em;
  2218. padding-bottom: 3px;
  2219. font-weight: 400;
  2220. color: var(--main-color);
  2221. }
  2222. .word_edit input[type="input"] {
  2223. width: inherit;
  2224. }
  2225. .res_item .tool_bar td {
  2226. border-right: 1px solid var(--tool-line-color);
  2227. }
  2228. .res_item {
  2229. border: 1px solid var(--tool-line-color);
  2230. border-radius: 5px;
  2231. width: 302px;
  2232. margin: 6px 0;
  2233. transition: all 0.4s ease;
  2234. }
  2235. .res_item .tool_bar .res_button {
  2236. margin: 0;
  2237. padding: 0;
  2238. cursor: pointer;
  2239. }
  2240. .res_item .tool_bar .res_type {
  2241. margin: 0;
  2242. padding: 0;
  2243. display: none;
  2244. }
  2245. .res_info {
  2246. border-left: 1px solid #555;
  2247. }
  2248. .res_info:hover {
  2249. border-left: 1px solid #585;
  2250. cursor: pointer;
  2251. }
  2252. .res_info_1 {
  2253. color: var(--tool-color);
  2254. padding: 2px 4px;
  2255. }
  2256. .res_info_2 {
  2257. font-size: 80%;
  2258. padding: 1px 4px;
  2259. }
  2260. .res_info_1 .book_name {
  2261. font-weight: 700;
  2262. }
  2263. #wizard_div_mybook,
  2264. #wizard_div_palicannon {
  2265. margin-top: 3.5em;
  2266. justify-content: center;
  2267. width: 80em;
  2268. }
  2269. #pc_res_loader {
  2270. /*display:none;*/
  2271. }
  2272. .res_load_progress_canvas {
  2273. background-color: #995;
  2274. }
  2275. .load_progress_canvas {
  2276. background-color: #995;
  2277. }
  2278. #loading_bar {
  2279. top: 3.5em;
  2280. left: 0;
  2281. width: 100%;
  2282. stroke-dasharray: 255%;
  2283. stroke-dashoffset: 255%;
  2284. stroke: #4688f1;
  2285. fill: none;
  2286. position: fixed;
  2287. display: none;
  2288. }
  2289. @keyframes opacityGo {
  2290. 0% {
  2291. opacity: 1;
  2292. }
  2293. 100% {
  2294. opacity: 0;
  2295. }
  2296. }
  2297. #circleProcess {
  2298. width: 3em;
  2299. height: 3em;
  2300. stroke-dasharray: 255%;
  2301. stroke-dashoffset: 255%;
  2302. stroke: var(--btn-color);
  2303. fill: none;
  2304. -webkit-transform: rotate(-90deg);
  2305. -moz-transform: rotate(-90deg);
  2306. -ms-transform: rotate(-90deg);
  2307. -o-transform: rotate(-90deg);
  2308. transform: rotate(-90deg);
  2309. display: none;
  2310. position: absolute;
  2311. stroke-width: 0.2em;
  2312. }
  2313. #load_progress_num {
  2314. display: none;
  2315. }
  2316. #id_wizard_palicannon_index_filelist .case_dropdown {
  2317. display: inline-block;
  2318. background-color: #aaa;
  2319. }
  2320. #load_progress_div {
  2321. margin-right: 8px;
  2322. width: 3em;
  2323. height: 3em;
  2324. display: none;
  2325. -webkit-align-items: center;
  2326. -moz-align-items: center;
  2327. -webkit-justify-content: center;
  2328. -moz-justify-content: center;
  2329. justify-content: center;
  2330. }
  2331. .ctrl {
  2332. display: none;
  2333. }
  2334. .pali_book_select_div {
  2335. overflow: hidden;
  2336. display: inline-flex;
  2337. flex-wrap: nowrap;
  2338. justify-content: center;
  2339. align-items: center;
  2340. width: 100%;
  2341. height: 10em;
  2342. }
  2343. #wizard_palicannon_par_select {
  2344. display: inline-flex;
  2345. padding-top: 40px;
  2346. width: 100%;
  2347. }
  2348. #wizard_palicannon_par_select_toc {
  2349. flex: 3;
  2350. padding: 0 10px;
  2351. /*border-right: 1px solid var(--border-line-color);*/
  2352. will-change: min-height;
  2353. overflow-x: hidden;
  2354. }
  2355. .wizard_palicannon_par_select_toc_inner {
  2356. position: relative;
  2357. transform: translate(0, 0);
  2358. transform: translate3d(0, 0, 0);
  2359. will-change: position, transform;
  2360. }
  2361. #wizard_palicannon_par_select_text {
  2362. padding: 0 10px;
  2363. flex: 7;
  2364. overflow-x: auto;
  2365. }
  2366. .wizard_par_tools {
  2367. font-size: 85%;
  2368. border-top: 1px solid var(--border-line-color);
  2369. }
  2370. .wizard_par_tools_title {
  2371. }
  2372. .book_index_shell {
  2373. font-weight: 500;
  2374. border-left: 1px solid var(--tool-line-color);
  2375. margin-right: -1px;
  2376. height: 10em;
  2377. overflow-y: auto;
  2378. overflow-x: hidden;
  2379. width: auto;
  2380. transition: all 1s;
  2381. }
  2382. .pali_book_select_div_shell {
  2383. /*border-bottom: var(--border);*/
  2384. background-color: var(--tool-bg-color3);
  2385. padding: 0 50px;
  2386. flex-wrap: wrap;
  2387. display: flex;
  2388. width: 100%;
  2389. overflow: hidden;
  2390. justify-content: center;
  2391. }
  2392. .editor_wizard_pali_cannon {
  2393. flex-wrap: wrap;
  2394. display: flex;
  2395. width: 100%;
  2396. overflow: hidden;
  2397. }
  2398. .pali_book_select .selected {
  2399. background-color: var(--link-color);
  2400. color: var(--btn-hover-color);
  2401. word-break: keep-all;
  2402. text-overflow: ellipsis;
  2403. overflow: hidden;
  2404. }
  2405. #id_wizard_palicannon_index_book {
  2406. font-weight: 700;
  2407. color: var(--tool-color);
  2408. }
  2409. .par_tools_show_ctl {
  2410. cursor: pointer;
  2411. }
  2412. .wizard_par_tools_body {
  2413. display: none;
  2414. }
  2415. .wizard_par_div p {
  2416. margin-top: 0.2em;
  2417. margin-bottom: 1.2em;
  2418. }
  2419. /*VRI CSS*/
  2420. .wizard_par_div .note {
  2421. color: blue;
  2422. }
  2423. .wizard_par_div .bld {
  2424. font-weight: bold;
  2425. }
  2426. .wizard_par_div .paranum {
  2427. font-weight: bold;
  2428. }
  2429. .wizard_par_div .hit {
  2430. background-color: blue;
  2431. color: white;
  2432. }
  2433. .wizard_par_div .context {
  2434. background-color: green;
  2435. color: white;
  2436. }
  2437. .wizard_par_div p {
  2438. border-top: 0in;
  2439. border-bottom: 0in;
  2440. padding-top: 0in;
  2441. padding-bottom: 0in;
  2442. margin-top: 0in;
  2443. margin-bottom: 0.5cm;
  2444. }
  2445. .wizard_par_div .indent {
  2446. font-size: 12pt;
  2447. text-indent: 2em;
  2448. margin-left: 3em;
  2449. }
  2450. .wizard_par_div .bodytext {
  2451. font-size: 12pt;
  2452. text-indent: 2em;
  2453. }
  2454. .wizard_par_div .hangnum {
  2455. font-size: 12pt;
  2456. text-indent: 2em;
  2457. }
  2458. /* Namo tassa, and nitthita -- no unique structural distinction */
  2459. .wizard_par_div .centered {
  2460. font-size: 12pt;
  2461. text-align: center;
  2462. }
  2463. .wizard_par_div .unindented {
  2464. font-size: 12pt;
  2465. }
  2466. .wizard_par_div .book {
  2467. font-size: 21pt;
  2468. text-align: center;
  2469. font-weight: bold;
  2470. }
  2471. .wizard_par_div .chapter {
  2472. font-size: 18pt;
  2473. text-align: center;
  2474. font-weight: bold;
  2475. }
  2476. .wizard_par_div .nikaya {
  2477. font-size: 24pt;
  2478. text-align: center;
  2479. font-weight: bold;
  2480. }
  2481. .wizard_par_div .title {
  2482. font-size: 12pt;
  2483. text-align: center;
  2484. font-weight: bold;
  2485. }
  2486. .wizard_par_div .subhead {
  2487. font-size: 12pt;
  2488. text-align: center;
  2489. font-weight: bold;
  2490. }
  2491. .wizard_par_div .subsubhead {
  2492. font-size: 12pt;
  2493. text-align: center;
  2494. font-weight: bold;
  2495. }
  2496. /* Gatha line 1 */
  2497. .wizard_par_div .gatha1 {
  2498. font-size: 12pt;
  2499. margin-bottom: 0em;
  2500. margin-left: 4em;
  2501. }
  2502. /* Gatha line 2 */
  2503. .wizard_par_div .gatha2 {
  2504. font-size: 12pt;
  2505. margin-bottom: 0em;
  2506. margin-left: 4em;
  2507. }
  2508. /* Gatha line 3 */
  2509. .wizard_par_div .gatha3 {
  2510. font-size: 12pt;
  2511. margin-bottom: 0em;
  2512. margin-left: 4em;
  2513. }
  2514. /* Gatha last line */
  2515. .wizard_par_div .gathalast {
  2516. font-size: 12pt;
  2517. margin-bottom: 0.5cm;
  2518. margin-left: 4em;
  2519. }
  2520. /*VRI CSS End*/
  2521. #right_tool_bar {
  2522. color: var(--btn-color);
  2523. position: fixed;
  2524. height: calc(100% - 3.5em);
  2525. top: 3.5em;
  2526. left: 100%;
  2527. width: 28vw;
  2528. background-color: var(--tool-bg-color);
  2529. z-index: 20;
  2530. -webkit-transition-duration: 0.4s;
  2531. transition-duration: 0.4s;
  2532. -webkit-contain: strict;
  2533. contain: strict;
  2534. z-index: 51;
  2535. }
  2536. #right_tool_bar_inner {
  2537. padding: 0 0.5em;
  2538. height: calc(100% - 3px);
  2539. width: 100%;
  2540. overflow-y: auto;
  2541. }
  2542. .tooltip {
  2543. position: relative;
  2544. display: inline;
  2545. cursor: help;
  2546. }
  2547. .tooltip .tooltiptext {
  2548. visibility: hidden;
  2549. position: absolute;
  2550. min-width: 80px;
  2551. background-color: #555;
  2552. color: #fff;
  2553. text-align: center;
  2554. padding: 5px 0;
  2555. border-radius: 6px;
  2556. z-index: 1;
  2557. opacity: 0;
  2558. transition: all 0.6s;
  2559. }
  2560. .tooltip:hover .tooltiptext {
  2561. visibility: visible;
  2562. opacity: 1;
  2563. }
  2564. .tooltip-top {
  2565. top: -150%;
  2566. left: 50%;
  2567. margin-left: -40px;
  2568. transition: all 0.6s;
  2569. }
  2570. .tooltip:hover .tooltip-top {
  2571. top: -180%;
  2572. }
  2573. .tooltip .tooltip-top::after {
  2574. content: " ";
  2575. position: absolute;
  2576. top: 100%; /* 提示工具底部 */
  2577. left: 50%;
  2578. margin-left: -5px;
  2579. border-width: 5px;
  2580. border-style: solid;
  2581. border-color: #555 transparent transparent transparent;
  2582. }
  2583. .tooltip-bottom {
  2584. top: 100%;
  2585. left: 50%;
  2586. margin-left: -60px;
  2587. }
  2588. .tooltip-bottom::after {
  2589. content: "";
  2590. position: absolute;
  2591. bottom: 100%;
  2592. left: 50%;
  2593. margin-left: -5px;
  2594. border-width: 5px;
  2595. border-style: solid;
  2596. border-color: transparent transparent #555 transparent;
  2597. }
  2598. .tooltip_menu {
  2599. position: relative;
  2600. display: inline;
  2601. zcursor: help;
  2602. }
  2603. .tooltip_menu .tooltiptext {
  2604. visibility: hidden;
  2605. position: absolute;
  2606. min-width: 80px;
  2607. background-color: #555;
  2608. color: #fff;
  2609. text-align: center;
  2610. padding: 2px;
  2611. border-radius: 6px;
  2612. z-index: 1;
  2613. opacity: 0;
  2614. transition: opacity 0.6s;
  2615. }
  2616. .tooltip_menu a {
  2617. padding: 3px 5px;
  2618. margin: 0;
  2619. }
  2620. .tooltip_menu a:hover {
  2621. background-color: #fff;
  2622. color: #555;
  2623. }
  2624. .tooltip_menu:hover .tooltiptext {
  2625. visibility: visible;
  2626. opacity: 1;
  2627. }
  2628. .tooltip_menu-bottom {
  2629. top: 100%;
  2630. left: 50%;
  2631. margin-left: -60px;
  2632. }
  2633. .tooltip_menu-bottom::after {
  2634. content: "";
  2635. position: absolute;
  2636. bottom: 100%;
  2637. left: 50%;
  2638. margin-left: -5px;
  2639. border-width: 5px;
  2640. border-style: solid;
  2641. border-color: transparent transparent #555 transparent;
  2642. }
  2643. #wizard_palicannon_par_select_text_head {
  2644. padding: 20px 30px;
  2645. border-radius: 8px;
  2646. /*border: 1px solid var(--border-line-color);*/
  2647. display: none;
  2648. background-color: var(--tool-bg-color);
  2649. margin: 20px 40px 40px 40px;
  2650. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2651. }
  2652. .wizard_palicannon_par_select_text_head_inner {
  2653. width: 100%;
  2654. display: inline-flex;
  2655. padding: 16px;
  2656. border-top: 1px solid var(--tool-line-color);
  2657. }
  2658. #wizard_palicannon_par_select_text_head_button {
  2659. width: 30em;
  2660. margin-right: auto;
  2661. font-size: 120%;
  2662. }
  2663. #wizard_palicannon_par_select_text_head_bookname {
  2664. padding: 1em;
  2665. font-size: 160%;
  2666. float: left;
  2667. }
  2668. #star_lv {
  2669. font-size: 160%;
  2670. margin-top: 1.8em;
  2671. display: inline-block;
  2672. }
  2673. .chapter_info {
  2674. width: auto;
  2675. margin-right: auto;
  2676. float: left;
  2677. }
  2678. .resouse_info {
  2679. width: auto;
  2680. margin-right: auto;
  2681. float: left;
  2682. max-width: 10em;
  2683. }
  2684. #wizard_palicannon_par_select_text_head_res {
  2685. display: flex;
  2686. width: 50em;
  2687. }
  2688. #palicannon_par_res_list {
  2689. color: var(--main-color);
  2690. width: auto;
  2691. max-width: 30em;
  2692. background-color: var(--bg-color);
  2693. margin: 0;
  2694. padding: 4px 10px;
  2695. position: absolute;
  2696. border-radius: 2px;
  2697. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  2698. display: none;
  2699. z-index: 10;
  2700. transition: opacity 0.6s;
  2701. }
  2702. #palicannon_par_res_list_shell {
  2703. display: none;
  2704. }
  2705. .pc_nav_button_show_res_win {
  2706. margin: 2px 5px;
  2707. padding: 2px;
  2708. }
  2709. .icon_btn {
  2710. color: var(--btn-color);
  2711. padding: 0.3em 0.3em;
  2712. border: 1px solid var(--nocolor);
  2713. border-radius: 6px;
  2714. margin: 0 2px;
  2715. }
  2716. .icon_btn:hover {
  2717. background-color: var(--btn-hover-bg-color);
  2718. border: 1px solid var(--btn-border-line-color);
  2719. }
  2720. .importbtn {
  2721. width: 28em;
  2722. height: 28em;
  2723. border-radius: 8px;
  2724. text-align: left;
  2725. justify-content: flex-start;
  2726. vertical-align: bottom;
  2727. align-items: flex-end;
  2728. flex-wrap: wrap;
  2729. padding: 3em;
  2730. background-color: #7d7d7d;
  2731. color: var(--btn-hover-color);
  2732. }
  2733. .importbtn h1,
  2734. .importbtnp p {
  2735. flex: 100%;
  2736. text-align: left;
  2737. justify-content: flex-start;
  2738. vertical-align: bottom;
  2739. align-items: flex-end;
  2740. }
  2741. .editor_wizard_caption {
  2742. flex: 100%;
  2743. text-align: left;
  2744. }
  2745. .editor_wizard_nav {
  2746. position: absolute;
  2747. right: 45px;
  2748. }
  2749. .palicannon_nav_item {
  2750. width: 10em;
  2751. text-overflow: ellipsis;
  2752. overflow: hidden;
  2753. white-space: nowrap;
  2754. }
  2755. #id_debug_output p {
  2756. margin: 1px;
  2757. padding: 1px;
  2758. font-size: 10pt;
  2759. }
  2760. #index_nav {
  2761. display: inline;
  2762. }
  2763. #index_nav .selected {
  2764. background-color: var(--btn-border-color);
  2765. color: var(--tool-color);
  2766. }
  2767. .palicannon_nav_level_0 {
  2768. padding-left: 7.5em;
  2769. display: none;
  2770. }
  2771. .palicannon_nav_level_1 {
  2772. }
  2773. .palicannon_nav_level_1 {
  2774. font-weight: 700;
  2775. padding-left: 0;
  2776. }
  2777. .palicannon_nav_level_2 {
  2778. }
  2779. .palicannon_nav_level_2 {
  2780. padding-left: 1em;
  2781. }
  2782. .palicannon_nav_level_3 {
  2783. }
  2784. .palicannon_nav_level_3 {
  2785. padding-left: 2em;
  2786. }
  2787. .palicannon_nav_level_4 {
  2788. }
  2789. .palicannon_nav_level_4 {
  2790. padding-left: 3em;
  2791. }
  2792. .palicannon_nav_level_5 {
  2793. }
  2794. .palicannon_nav_level_5 {
  2795. padding-left: 4em;
  2796. }
  2797. .palicannon_nav_level_6 {
  2798. }
  2799. .palicannon_nav_level_6 {
  2800. padding-left: 5em;
  2801. }
  2802. .palicannon_nav_level_7 {
  2803. }
  2804. .palicannon_nav_level_7 {
  2805. padding-left: 6em;
  2806. }
  2807. .palicannon_nav_level_8 {
  2808. }
  2809. .palicannon_nav_level_8 {
  2810. padding-left: 7em;
  2811. }
  2812. .tree_expand_0 {
  2813. cursor: pointer;
  2814. margin: 0 3px;
  2815. }
  2816. .tree_expand_1 {
  2817. cursor: pointer;
  2818. margin: 0 3px;
  2819. }
  2820. .tree_expand_2 {
  2821. cursor: pointer;
  2822. margin: 0 3px;
  2823. }
  2824. .tree_expand_3 {
  2825. cursor: pointer;
  2826. margin: 0 3px;
  2827. }
  2828. .tree_expand_4 {
  2829. cursor: pointer;
  2830. margin: 0 3px;
  2831. }
  2832. .tree_expand_5 {
  2833. cursor: pointer;
  2834. margin: 0 3px;
  2835. }
  2836. .tree_expand_6 {
  2837. cursor: pointer;
  2838. margin: 0 3px;
  2839. }
  2840. .tree_expand_7 {
  2841. cursor: pointer;
  2842. margin: 0 3px;
  2843. }
  2844. .tree_expand_8 {
  2845. cursor: pointer;
  2846. margin: 0 3px;
  2847. }
  2848. .tree_collapse_0 {
  2849. cursor: pointer;
  2850. margin: 0 3px;
  2851. display: none;
  2852. }
  2853. .tree_collapse_1 {
  2854. cursor: pointer;
  2855. margin: 0 3px;
  2856. display: none;
  2857. }
  2858. .tree_collapse_2 {
  2859. cursor: pointer;
  2860. margin: 0 3px;
  2861. display: none;
  2862. }
  2863. .tree_collapse_3 {
  2864. cursor: pointer;
  2865. margin: 0 3px;
  2866. display: none;
  2867. }
  2868. .tree_collapse_4 {
  2869. cursor: pointer;
  2870. margin: 0 3px;
  2871. display: none;
  2872. }
  2873. .tree_collapse_5 {
  2874. cursor: pointer;
  2875. margin: 0 3px;
  2876. display: none;
  2877. }
  2878. .tree_collapse_6 {
  2879. cursor: pointer;
  2880. margin: 0 3px;
  2881. display: none;
  2882. }
  2883. .tree_collapse_7 {
  2884. cursor: pointer;
  2885. margin: 0 3px;
  2886. display: none;
  2887. }
  2888. .tree_collapse_8 {
  2889. cursor: pointer;
  2890. margin: 0 3px;
  2891. display: none;
  2892. }
  2893. .foot_div {
  2894. text-align: center;
  2895. color: #b5b5b566;
  2896. font-size: x-large;
  2897. }
  2898. #search_div {
  2899. font-size: 120%;
  2900. padding: 30px 0;
  2901. text-align: center;
  2902. padding-right: 1.5em;
  2903. }
  2904. #wizard_palicannon_par_select_text_body {
  2905. background-color: var(--bg-color);
  2906. color: var(--main-color);
  2907. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2908. margin: 10px;
  2909. padding: 0 30px;
  2910. overflow-x: auto;
  2911. }
  2912. .mybook_l {
  2913. flex: 5;
  2914. margin-right: 20px;
  2915. }
  2916. .mybook_r {
  2917. padding: 20px;
  2918. flex: 5;
  2919. border-radius: 8px;
  2920. background-color: var(--tool-bg-color);
  2921. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2922. }
  2923. .mybook_r .common-tab {
  2924. padding: 0 20px;
  2925. margin: 0;
  2926. margin-top: 20px;
  2927. background-color: var(--tool-bg-color);
  2928. border-bottom: 1px solid var(--tool-line-color);
  2929. }
  2930. .mybook_r .common-tab_li {
  2931. padding: 0.4em 0.6em;
  2932. margin: 0;
  2933. margin-bottom: -1px;
  2934. background-color: var(--tool-bg-color);
  2935. border-bottom: 1px solid var(--tool-line-color);
  2936. }
  2937. .mybook_r .common-tab_li_act {
  2938. padding: 0.4em 0.6em;
  2939. margin-bottom: -1px;
  2940. background-color: var(--tool-bg-color);
  2941. border: 1px solid var(--tool-line-color);
  2942. border-bottom: 1px solid var(--tool-bg-color);
  2943. }
  2944. #wizard_sutta_preview {
  2945. color: var(--main-color);
  2946. height: 100%;
  2947. background-color: var(--bg-color);
  2948. padding: 2em;
  2949. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2950. }
  2951. .right_tool_btn {
  2952. position: fixed;
  2953. right: 50px;
  2954. top: 5em;
  2955. background-color: unset;
  2956. }
  2957. .right_tool_btn button {
  2958. background-color: var(--link-color);
  2959. border-color: var(--link-color);
  2960. color: var(--btn-color);
  2961. height: 3em;
  2962. width: 3em;
  2963. padding: 0;
  2964. }
  2965. .right_tool_btn button:hover {
  2966. background-color: var(--link-hover-color);
  2967. border-color: var(--link-color);
  2968. color: var(--btn-hover-color);
  2969. height: 3em;
  2970. width: 3em;
  2971. padding: 0;
  2972. }
  2973. .right_tool_btn .icon {
  2974. height: 2em;
  2975. width: 2em;
  2976. }
  2977. /*Word Map*/
  2978. .wm_word_block {
  2979. width: 100%;
  2980. height: 100%;
  2981. }
  2982. #wm_word_block_0 {
  2983. width: calc(100% + 20em);
  2984. height: calc(100% + 20em);
  2985. }
  2986. .wm_word_block table {
  2987. width: auto;
  2988. font-size: 100%;
  2989. }
  2990. .wm_word_block td {
  2991. width: auto;
  2992. font-size: 100%;
  2993. }
  2994. .wm_word_block_root_shell {
  2995. width: auto;
  2996. display: inline-block;
  2997. padding: 10px;
  2998. position: relative;
  2999. }
  3000. .wm_word_block_root {
  3001. width: auto;
  3002. border: 2px solid #98b304;
  3003. padding: 5px;
  3004. border-radius: 8px;
  3005. display: inline-block;
  3006. position: relative;
  3007. }
  3008. .wm_word_block_root .toolbar {
  3009. font-size: 90%;
  3010. border-bottom: 1px solid #bbbbbb;
  3011. display: flex;
  3012. justify-content: space-between;
  3013. margin-bottom: 8px;
  3014. padding-bottom: 5px;
  3015. }
  3016. .word_new {
  3017. border: 2px solid #828282;
  3018. }
  3019. .wm_word_block_root_h {
  3020. margin: 0 1em;
  3021. }
  3022. .wm_word_block_root_v {
  3023. }
  3024. .wordmap_line_shell {
  3025. height: 5em;
  3026. width: 2em;
  3027. }
  3028. .wordmap_line {
  3029. width: 100%;
  3030. stroke: #4688f1;
  3031. fill: none;
  3032. }
  3033. .wm_line {
  3034. height: 2em;
  3035. }
  3036. .wm_child_div {
  3037. display: inline-flex;
  3038. }
  3039. .wm_div {
  3040. width: 100%;
  3041. height: 100%;
  3042. overflow-x: scroll;
  3043. }
  3044. #wm_title {
  3045. height: 3em;
  3046. display: flex;
  3047. padding: 5px;
  3048. justify-content: space-between;
  3049. border-bottom: 1px solid var(--tool-line-color);
  3050. }
  3051. #wm_body {
  3052. display: flex;
  3053. position: relative;
  3054. height: calc(100% - 3em);
  3055. height: -moz-calc(100% - 3em);
  3056. height: -webkit-calc(100% - 3em);
  3057. width: 100%;
  3058. overflow-y: scroll;
  3059. /*overflow-x:scroll;*/
  3060. }
  3061. #wm_body_inner {
  3062. width: calc(100% + 30em);
  3063. height: calc(100% + 30em);
  3064. }
  3065. .wm_input_span {
  3066. min-width: 3em;
  3067. min-height: 1em;
  3068. width: 100%;
  3069. flex-wrap: nowrap;
  3070. max-width: 15em;
  3071. overflow: hidden;
  3072. text-overflow: ellipsis;
  3073. }
  3074. .wm_root_div {
  3075. text-align: center;
  3076. }
  3077. .wm_inline_control {
  3078. height: 1.6em;
  3079. display: -webkit-inline-box;
  3080. }
  3081. .wm_one_mean {
  3082. margin: 2px 5px;
  3083. outline: 1px solid;
  3084. display: flex;
  3085. align-items: center;
  3086. white-space: nowrap;
  3087. }
  3088. .wm_one_mean:hover {
  3089. cursor: pointer;
  3090. background-color: #1a4a87;
  3091. color: white;
  3092. }
  3093. .wm_wordmean {
  3094. width: auto;
  3095. display: flex;
  3096. word-wrap: break-word;
  3097. /*word-break:normal;*/
  3098. }
  3099. .wm_wordtype {
  3100. margin: 2px 2px;
  3101. background-color: #c4c4c4;
  3102. width: auto;
  3103. display: flex;
  3104. white-space: nowrap;
  3105. }
  3106. .wm_wordtype_div {
  3107. margin-left: 0.2em;
  3108. }
  3109. .wm_dictname_div {
  3110. margin-right: auto;
  3111. }
  3112. .wm_gramma_info {
  3113. color: var(--tool-color);
  3114. outline-color: var(--tool-color);
  3115. font-weight: 400;
  3116. cursor: default;
  3117. }
  3118. .wm_selection_menu_a {
  3119. display: inline-flex;
  3120. justify-content: space-between;
  3121. }
  3122. .wm_dictname {
  3123. background-color: #c4c4c4;
  3124. padding: 0 0.2em;
  3125. margin: 2px;
  3126. display: flex;
  3127. align-items: center;
  3128. margin-right: auto;
  3129. width: auto;
  3130. white-space: nowrap;
  3131. }
  3132. .wm_dictname:hover {
  3133. cursor: pointer;
  3134. background-color: #1a4a87;
  3135. color: white;
  3136. }
  3137. .wm_word_block_root .type {
  3138. font-family: Times, Arial, Verdana;
  3139. font-style: italic;
  3140. font-weight: 400;
  3141. font-size: 95%;
  3142. display: inline-flex;
  3143. flex-wrap: nowrap;
  3144. }
  3145. /*End of Word-Map*/
  3146. /**/
  3147. .pop_win_full {
  3148. /*margin-top: 3.5em;*/
  3149. position: fixed;
  3150. left: 0;
  3151. top: 0;
  3152. opacity: 1;
  3153. width: 100%;
  3154. height: 100%;
  3155. background-color: rgba(0, 0, 0, 0.8);
  3156. display: none;
  3157. -webkit-align-items: center;
  3158. -moz-align-items: center;
  3159. -webkit-justify-content: center;
  3160. -moz-justify-content: center;
  3161. justify-content: center;
  3162. z-index: 21;
  3163. }
  3164. .pop_win_full #pop_win_inner {
  3165. /*background-color: var(--tool-bg-color);*/
  3166. color: var(--tool-color);
  3167. border-radius: 4px;
  3168. height: 95%;
  3169. width: 100%;
  3170. margin: 1em;
  3171. display: -webkit-flex;
  3172. display: -moz-flex;
  3173. display: flex;
  3174. }
  3175. .un_parent {
  3176. display: block;
  3177. /*width:3em;*/
  3178. overflow: auto;
  3179. }
  3180. .comp_parent {
  3181. display: block;
  3182. /*width:3em;*/
  3183. overflow: auto;
  3184. }
  3185. /*new*/
  3186. .radio-button {
  3187. text-align: center;
  3188. width: auto;
  3189. height: 90%;
  3190. display: -webkit-flex;
  3191. display: -moz-flex;
  3192. display: inline;
  3193. margin: 3px 10px;
  3194. align-items: flex-end;
  3195. color: var(--main-color);
  3196. font-weight: 500;
  3197. }
  3198. .radio-button li {
  3199. color: var(--btn-color);
  3200. margin: 0;
  3201. padding: 4px 5px;
  3202. display: inline;
  3203. cursor: pointer;
  3204. border: 1px solid var(--nocolor);
  3205. }
  3206. .radio-button .li_act {
  3207. color: var(--tool-color);
  3208. margin: 0;
  3209. padding: 4px 5px;
  3210. display: inline;
  3211. cursor: pointer;
  3212. background-color: var(--btn-hover-bg-color);
  3213. border: 1px solid var(--tool-line-color);
  3214. border-radius: 4px;
  3215. }
  3216. .info_num {
  3217. width: 1.2em;
  3218. height: 1.2em;
  3219. position: absolute;
  3220. top: -0.6em;
  3221. left: -0.6em;
  3222. font-size: 120%;
  3223. justify-content: center;
  3224. align-items: center;
  3225. background-color: #ff5200;
  3226. border: 0.15em solid #ff5200;
  3227. border-radius: 1em;
  3228. display: flex;
  3229. }
  3230. .detail_info_num {
  3231. width: 1.2em;
  3232. height: 1.2em;
  3233. position: relative;
  3234. top: -0.6em;
  3235. left: -0.6em;
  3236. justify-content: center;
  3237. align-items: center;
  3238. background-color: #ff5200;
  3239. border: 0.15em solid #ff5200;
  3240. border-radius: 1em;
  3241. display: flex;
  3242. }
  3243. .info_num_case_dropdown {
  3244. position: absolute;
  3245. left: 100%;
  3246. top: 0;
  3247. padding: 0;
  3248. cursor: pointer;
  3249. min-width: 3em;
  3250. }
  3251. .info_num_case_dropdown .case_dropdown-content {
  3252. margin: 0 -0.1em;
  3253. }
  3254. .info_num_case_dropdown:hover .case_dropdown-content {
  3255. display: block;
  3256. margin: 0 -0.1em;
  3257. }
  3258. .info_num_detail_dropdown {
  3259. position: relative;
  3260. left: 1em;
  3261. /* top: 0.5em; */
  3262. padding: 0;
  3263. cursor: pointer;
  3264. min-width: 3em;
  3265. }
  3266. .info_num_detail_dropdown .case_dropdown-content {
  3267. margin: 0 -0.1em;
  3268. }
  3269. .info_num_detail_dropdown:hover .case_dropdown-content {
  3270. display: block;
  3271. margin: 0 -0.1em;
  3272. }
  3273. .info_num_gramma_dropdown {
  3274. position: relative;
  3275. top: 0.5em;
  3276. padding: 0 0.5em;
  3277. cursor: pointer;
  3278. min-width: 2em;
  3279. }
  3280. .info_num_gramma_dropdown .detail_info_num {
  3281. font-size: 80%;
  3282. left: 0.2em;
  3283. }
  3284. .info_num_gramma_dropdown .case_dropdown-content {
  3285. margin: 0 -0.1em;
  3286. }
  3287. .info_num_gramma_dropdown:hover .case_dropdown-content {
  3288. display: block;
  3289. margin: 0 -0.1em;
  3290. }
  3291. .radio-button li:hover {
  3292. background-color: var(--btn-hover-bg-color);
  3293. border: 1px solid var(--tool-line-color);
  3294. border-radius: 4px;
  3295. }
  3296. .dict_word_list {
  3297. }
  3298. .dict_word {
  3299. display: block;
  3300. border-radius: 5px;
  3301. margin: 10px 0;
  3302. padding: 5px;
  3303. transition: all 0.4s ease;
  3304. box-shadow: 2px 1px 8px 1px var(--shadow-color);
  3305. border-radius: 8px;
  3306. }
  3307. .dict_word > .word {
  3308. display: block;
  3309. }
  3310. .dict_word > .pali {
  3311. text-transform: capitalize;
  3312. font-size: 110%;
  3313. font-weight: 700;
  3314. display: block;
  3315. }
  3316. .dict_word > .dict {
  3317. font-size: 80%;
  3318. color: #a4f5df;
  3319. /*border-bottom: 1px solid var(--tool-line-color);*/
  3320. }
  3321. .dict_word > .mean {
  3322. font-size: 90%;
  3323. margin: 2px 0;
  3324. line-height: 130%;
  3325. font-weight: 400;
  3326. display: block;
  3327. }
  3328. .dict_word > .note {
  3329. font-size: 90%;
  3330. margin: 2px 0;
  3331. line-height: 130%;
  3332. font-weight: 400;
  3333. display: block;
  3334. }
  3335. .dict_word hl {
  3336. background-color: #ffff7a;
  3337. color: black;
  3338. }
  3339. #dict_ref_search_input_head {
  3340. display: flex;
  3341. justify-content: space-between;
  3342. }
  3343. #dict_ref_search_input_head .case_dropdown {
  3344. min-width: 0;
  3345. }
  3346. #dict_ref_search_input_head .button_icon {
  3347. height: 1.2em;
  3348. width: 1.2em;
  3349. fill: var(--btn-color);
  3350. }
  3351. .button_icon {
  3352. height: 2em;
  3353. width: 2em;
  3354. fill: var(--btn-color);
  3355. }
  3356. #code_list {
  3357. background-color: #545454;
  3358. }
  3359. #input_parts a {
  3360. margin: 2pt 5pt;
  3361. text-decoration: underline;
  3362. }
  3363. .sent_gramma_0 {
  3364. /*
  3365. border-top: 2px solid rgba(255, 87, 7, 0.38);
  3366. border-top-width: 2px;
  3367. border-top-style: solid;
  3368. border-top-color: rgba(255, 87, 7, 0.38);
  3369. border-bottom: 2px solid red;
  3370. border-bottom-width: 2px;
  3371. border-bottom-style: solid;
  3372. border-bottom-color: rgba(255, 87, 7, 0.38);
  3373. */
  3374. }
  3375. .sent_gramma_1 {
  3376. /*
  3377. border-top: 2px solid blue;
  3378. border-bottom: 2px solid blue;
  3379. */
  3380. }
  3381. .sent_gramma_2 {
  3382. /*
  3383. border-top: 2px solid black;
  3384. border-bottom: 2px solid black;
  3385. */
  3386. }
  3387. /*.sent_wbw_trans .sent_gramma_0:first-child {
  3388. border-left: 2px solid rgba(255, 87, 7, 0.38);
  3389. }*/
  3390. /*.sent_wbw*/
  3391. .word .sent_gramma_1:first-child {
  3392. border-left: 2px solid blue;
  3393. }
  3394. .sent_cut {
  3395. border-left: 2px solid blue;
  3396. }
  3397. .sent_wbw .sent_gramma_2:first-child {
  3398. border-left: 2px solid black;
  3399. }
  3400. /*.sent_wbw_trans .sent_gramma_0:last-child {
  3401. border-right: 2px solid rgba(255, 87, 7, 0.38);
  3402. }
  3403. .sent_wbw_trans .sent_gramma_1:last-child {
  3404. border-right: 2px solid blue;
  3405. }*/
  3406. /*.sent_wbw_trans .sent_gramma_2:last-child {
  3407. border-right: 2px solid black;
  3408. }*/
  3409. .sent_wbw_trans {
  3410. display: inline-flex;
  3411. width: 100%;
  3412. border-bottom: 3px solid silver;
  3413. margin: 10px 0;
  3414. }
  3415. .sent_wbw {
  3416. flex: 7;
  3417. display: flex;
  3418. flex-wrap: wrap;
  3419. /*overflow-y: auto;
  3420. max-height: 35vh;*/
  3421. }
  3422. .translate_sent {
  3423. flex: 3;
  3424. /*overflow-y: auto;
  3425. max-height: 35vh;*/
  3426. display: none;
  3427. }
  3428. .search_pali_text_prev {
  3429. background-color: #e9e9e9;
  3430. color: black;
  3431. padding: 2em;
  3432. flex: 7;
  3433. }
  3434. .search_pali_text_prev .paragraph {
  3435. background-color: white;
  3436. padding: 1em;
  3437. margin: 0.8em 0.1em;
  3438. box-shadow: 2px 2px 8px 2px var(--shadow-color);
  3439. border-radius: 8px;
  3440. }
  3441. .search_pali_text_prev .paragraph .book_title {
  3442. border-bottom-color: gray;
  3443. border-bottom-style: solid;
  3444. border-bottom-width: 1px;
  3445. padding-bottom: 1em;
  3446. margin-bottom: 1em;
  3447. }
  3448. .search_pali_text_prev .paragraph .book_title .book_name {
  3449. font-size: 120%;
  3450. color: black;
  3451. }
  3452. .search_pali_text_prev .paragraph .book_title .book_path {
  3453. color: blue;
  3454. }
  3455. .search_pali_text_prev .paragraph .par_text {
  3456. color: black;
  3457. }
  3458. .height_light {
  3459. background-color: #ffff7a;
  3460. color: black;
  3461. }
  3462. .menu {
  3463. }
  3464. #search_text_result {
  3465. display: flex;
  3466. }
  3467. .word .org_note {
  3468. margin: 0;
  3469. }
  3470. .apply_to {
  3471. flex: 1;
  3472. }
  3473. .edit_detail_p {
  3474. display: flex;
  3475. }
  3476. .edit_detail_span {
  3477. display: inline-table;
  3478. min-width: 5em;
  3479. flex: 4;
  3480. }
  3481. .black_background {
  3482. background-color: #545454;
  3483. }
  3484. .wm_edit_parent {
  3485. }
  3486. .wm_edit_mean {
  3487. }
  3488. .wm_edit_type {
  3489. }
  3490. .search_code {
  3491. display: none;
  3492. }
  3493. .pali_book_item_hide {
  3494. display: none;
  3495. }
  3496. .dict_find_gramma {
  3497. }
  3498. .term_sys_dropdown {
  3499. align: center;
  3500. float: down;
  3501. font-size: 100%;
  3502. }
  3503. .checkbox_1em {
  3504. height: 1em;
  3505. width: 1em;
  3506. flex: 3;
  3507. }
  3508. .term_select_span {
  3509. }
  3510. .term_select_div {
  3511. display: flex;
  3512. }
  3513. .term_word_head {
  3514. color: red;
  3515. }
  3516. .term_link {
  3517. color: var(--link-color);
  3518. cursor: pointer;
  3519. }
  3520. .term_link :hover {
  3521. text-decoration: underline;
  3522. }
  3523. .term_link_new {
  3524. color: red;
  3525. /*var(--mean-user-color);*/
  3526. cursor: pointer;
  3527. }
  3528. .term_link_new :hover {
  3529. text-decoration: underline;
  3530. }
  3531. .term_mean {
  3532. }
  3533. .term_pali {
  3534. }
  3535. .term_mean2 {
  3536. }
  3537. .term_mean_my {
  3538. }
  3539. .term_note {
  3540. }
  3541. .term_my {
  3542. color: green;
  3543. }
  3544. .term_other {
  3545. color: #12dc49;
  3546. }
  3547. #term_win {
  3548. display: none;
  3549. }
  3550. .note_ref {
  3551. font-weight: 700;
  3552. }
  3553. .pop_win_inner {
  3554. color: var(--tool-color);
  3555. border-radius: 4px;
  3556. min-height: 30vh;
  3557. min-width: 30vw;
  3558. max-height: 90vh;
  3559. max-width: 90vw;
  3560. display: -webkit-block;
  3561. display: -moz-block;
  3562. display: block;
  3563. background-color: white;
  3564. color: black;
  3565. margin: auto;
  3566. }
  3567. .win_title {
  3568. height: 3em;
  3569. display: flex;
  3570. justify-content: space-between;
  3571. padding: 5px;
  3572. border-bottom: 1px solid var(--tool-bg-color3);
  3573. }
  3574. .win_body {
  3575. display: flex;
  3576. position: relative;
  3577. height: calc(100% - 3em);
  3578. width: 100%;
  3579. overflow-y: scroll;
  3580. }
  3581. .win_body_inner {
  3582. max-height: 61vh;
  3583. max-width: 90vw;
  3584. padding: 0 1em;
  3585. overflow-y: scroll;
  3586. overflow-x: scroll;
  3587. }
  3588. .term_win_mean {
  3589. color: black;
  3590. font-size: 170%;
  3591. }
  3592. .tag {
  3593. background-color: var(--btn-border-color);
  3594. color: var(--tool-color);
  3595. border: 2px solid var(--btn-border-color);
  3596. border-radius: 99px;
  3597. margin: 2px 6px;
  3598. padding: 0 12px;
  3599. width: fit-content;
  3600. }
  3601. .tag a {
  3602. margin-left: 8px;
  3603. margin-right: -4px;
  3604. cursor: pointer;
  3605. }
  3606. .word_msg {
  3607. background-color: #ff45004a;
  3608. padding: 0 10px;
  3609. font-size: 80%;
  3610. border-radius: 99px;
  3611. cursor: pointer;
  3612. }
  3613. #net_down {
  3614. display: inline-block;
  3615. width: 1em;
  3616. color: #14de14;
  3617. }
  3618. .msgbox_div {
  3619. display: flex;
  3620. }
  3621. .msgbox_r {
  3622. display: block;
  3623. border-radius: 5px;
  3624. margin: 6px 0px;
  3625. padding: 5px;
  3626. transition: all 0.4s ease 0s;
  3627. margin-right: 4em;
  3628. background-color: white;
  3629. color: black;
  3630. }
  3631. .msgbox_r .head {
  3632. display: flex;
  3633. justify-content: space-between;
  3634. }
  3635. .msgbox_s {
  3636. display: block;
  3637. border-radius: 5px;
  3638. margin: 6px 0px;
  3639. padding: 5px;
  3640. transition: all 0.4s ease 0s;
  3641. text-align: left;
  3642. margin-left: auto;
  3643. background-color: #5cf65c;
  3644. color: black;
  3645. max-width: 80%;
  3646. }
  3647. .msgbox_s .head {
  3648. }
  3649. .msgbox_time {
  3650. display: block;
  3651. text-align: center;
  3652. }
  3653. .msgbox_time span {
  3654. border-radius: 5px;
  3655. color: black;
  3656. width: auto;
  3657. background-color: #7d7d7d;
  3658. display: inline-block;
  3659. padding: 1px 12px;
  3660. color: white;
  3661. font-size: 80%;
  3662. }
  3663. .msg_list li {
  3664. border-bottom: 1px solid var(--tool-line-color);
  3665. margin-bottom: 1em;
  3666. padding-bottom: 10px;
  3667. color: var(--tool-color);
  3668. display: flex;
  3669. justify-content: space-between;
  3670. }
  3671. #dict_ref_search,
  3672. #msg_panal_right,
  3673. #term_dict,
  3674. #pc_res_loader {
  3675. padding-bottom: 10em;
  3676. }
  3677. .file_select_checkbox {
  3678. display: none;
  3679. }
  3680. #dict_ref_search_result {
  3681. margin: 0 0.5em;
  3682. }
  3683. see {
  3684. text-decoration: none;
  3685. color: var(--link-color);
  3686. cursor: pointer;
  3687. }
  3688. see:hover {
  3689. text-decoration: underline;
  3690. }
  3691. .om_menu a {
  3692. padding: 0.3em 0.4em;
  3693. margin: 0.2em;
  3694. line-height: 120%;
  3695. text-decoration: none;
  3696. display: inline-block;
  3697. cursor: pointer;
  3698. text-align: left;
  3699. background-color: silver;
  3700. }
  3701. .publish_album_list {
  3702. border-bottom: 1px solid var(--tool-line-color);
  3703. cursor: pointer;
  3704. }
  3705. .publish_album_list li {
  3706. }
  3707. .publish_album_list .title {
  3708. font-size: 1.5em;
  3709. }
  3710. .project_res_info_head {
  3711. text-align: center;
  3712. background: darkgray;
  3713. color: white;
  3714. font-weight: 700;
  3715. }
  3716. .word_head_bar {
  3717. position: absolute;
  3718. margin-top: -24px;
  3719. }
  3720. .rela_menu {
  3721. display: inline-block;
  3722. }
  3723. .rela_menu .case_dropdown-content {
  3724. font-size: 80%;
  3725. }
  3726. .rela_bold {
  3727. font-weight: 700;
  3728. }
  3729. .relation_text {
  3730. font-weight: 500;
  3731. font-size: 90%;
  3732. background-color: none;
  3733. border: 1px solid var(--btn-border-color);
  3734. border-radius: 9px;
  3735. margin: 2px;
  3736. padding: 8px 12px;
  3737. -webkit-transition-duration: 0.2s;
  3738. -moz-transition-duration: 0.2s;
  3739. transition-duration: 0.2s;
  3740. cursor: pointer;
  3741. display: -webkit-inline-flex;
  3742. display: -moz-inline-flex;
  3743. display: inline-flex;
  3744. -webkit-align-items: center;
  3745. -moz-align-items: center;
  3746. align-items: center;
  3747. -webkit-flex-wrap: nowrap;
  3748. -moz-flex-wrap: nowrap;
  3749. flex-wrap: nowrap;
  3750. -webkit-justify-content: center;
  3751. -moz-justify-content: center;
  3752. justify-content: center;
  3753. }
  3754. .relation_tag {
  3755. display: block;
  3756. position: absolute;
  3757. padding: 1px 8px;
  3758. margin-top: -22px;
  3759. border: 1px solid var(--btn-border-color);
  3760. border-radius: 9px;
  3761. }
  3762. .relation_note {
  3763. display: inline-block;
  3764. padding: 1px 8px;
  3765. margin-top: -22px;
  3766. border: 1px solid var(--btn-border-color);
  3767. border-radius: 9px;
  3768. line-height: 1em;
  3769. }
  3770. .group_file_list {
  3771. margin: 12px 2px;
  3772. padding: 3px;
  3773. border-bottom: 1px solid gray;
  3774. }
  3775. .group_path {
  3776. border-bottom: 1px solid var(--tool-line-color);
  3777. padding: 5px 2px;
  3778. font-size: 110%;
  3779. }
  3780. .sent_wbw_trans_bar {
  3781. position: absolute;
  3782. margin-top: -29px;
  3783. width: 92%;
  3784. display: flex;
  3785. }
  3786. .tran_sent_inner {
  3787. border-left: 5px solid #ccd1ff;
  3788. padding-left: 0.4em;
  3789. }
  3790. .tran_sent_text_tool_bar {
  3791. display: flex;
  3792. justify-content: space-between;
  3793. }
  3794. .translate_sent_head_toolbar {
  3795. display: flex;
  3796. justify-content: space-between;
  3797. border-bottom: 1px solid var(--btn-color);
  3798. padding: 1px 3px;
  3799. margin: 1px 2px 12px 0px;
  3800. }
  3801. .tran_sen_textarea textarea {
  3802. width: 100%;
  3803. height: 28px;
  3804. font-size: 90%;
  3805. -webkit-transition-duration: 0.2s;
  3806. -moz-transition-duration: 0.2s;
  3807. transition-duration: 0.2s;
  3808. }
  3809. .tran_sent_pre {
  3810. font-size: 90%;
  3811. color: #505050;
  3812. }
  3813. .wbody .case_dropbtn {
  3814. min-width: 3em;
  3815. }
  3816. /*紧凑*/
  3817. .head_tool {
  3818. display: none;
  3819. }
  3820. .pardiv {
  3821. margin-bottom: 0.2em;
  3822. }
  3823. .par_heading {
  3824. margin-bottom: 1.2em;
  3825. }
  3826. .org,
  3827. .om,
  3828. .case {
  3829. line-height: 1.2em;
  3830. margin: 0.2em 0px;
  3831. }
  3832. note {
  3833. border: 1px solid rgba(102, 197, 253, 0.1);
  3834. display: block;
  3835. border-radius: 5px;
  3836. padding: 5px;
  3837. margin-top: 4px;
  3838. background-color: rgba(0, 0, 0, 0.1);
  3839. }
  3840. .ref {
  3841. text-align: right;
  3842. font-size: 75%;
  3843. color: gray;
  3844. }
  3845. .term_note note {
  3846. }
  3847. .borderB {
  3848. border-bottom: 1px solid var(--border-line-color);
  3849. }
  3850. .borderT {
  3851. border-top: 1px solid var(--border-line-color);
  3852. }
  3853. .borderL {
  3854. border-left: 1px solid var(--border-line-color);
  3855. }
  3856. .borderR {
  3857. border-right: 1px solid var(--border-line-color);
  3858. }
  3859. .borderC1 {
  3860. }
  3861. .borderC2 {
  3862. }
  3863. .borderC3 {
  3864. }
  3865. .textB {
  3866. font-size: 120%;
  3867. }
  3868. .textM {
  3869. font-size: 100%;
  3870. }
  3871. .textS {
  3872. font-size: 80%;
  3873. }
  3874. .textAl {
  3875. text-align: left;
  3876. }
  3877. .textAc {
  3878. text-align: center;
  3879. }
  3880. .textAr {
  3881. text-align: right;
  3882. }
  3883. .display_off {
  3884. display: none;
  3885. }
  3886. .icon_notify {
  3887. position: absolute;
  3888. background-color: var(--link-hover-color);
  3889. font-size: 80%;
  3890. border-radius: 99px;
  3891. margin-top: -8px;
  3892. margin-left: 10px;
  3893. padding: 2px 3px;
  3894. display: none;
  3895. }
  3896. #pre_search_result {
  3897. position: absolute;
  3898. background-color: var(--btn-hover-bg-color);
  3899. border: 1px solid var(--btn-border-line-color);
  3900. border-radius: 5px;
  3901. max-width: 100%;
  3902. width: 50em;
  3903. display: none;
  3904. }
  3905. .pre_serach_block {
  3906. border-bottom: 1px solid var(--shadow-color);
  3907. padding: 5px 8px;
  3908. }
  3909. .pre_serach_block_title {
  3910. display: flex;
  3911. justify-content: space-between;
  3912. }
  3913. .pre_serach_content {
  3914. padding: 4px 4px 4px 15px;
  3915. }
  3916. .index_left_panal {
  3917. padding-top: 3.5em;
  3918. position: fixed;
  3919. height: 100%;
  3920. left: 0;
  3921. top: 0;
  3922. width: 15em;
  3923. background-color: var(--tool-bg-color);
  3924. }
  3925. .navi_button li {
  3926. padding: 0.5em 0.6em 0.5em 1.6em;
  3927. line-height: 1.4em;
  3928. border-radius: 0;
  3929. transition: all 0.4s ease;
  3930. cursor: pointer;
  3931. display: -webkit-box;
  3932. display: -moz-box;
  3933. display: box;
  3934. word-break: keep-all;
  3935. overflow: hidden;
  3936. white-space: nowrap;
  3937. color: var(--btn-color);
  3938. }
  3939. .navi_button li:hover {
  3940. background-color: var(--link-color);
  3941. color: var(--btn-hover-color);
  3942. }
  3943. .navi_button .selected {
  3944. background-color: var(--btn-border-color);
  3945. }
  3946. .file_list_row {
  3947. display: flex;
  3948. justify-content: space-between;
  3949. border-bottom: 1px solid var(--border-line-color);
  3950. padding: 5px 8px;
  3951. }
  3952. .file_list_row:hover {
  3953. background-color: gray;
  3954. }
  3955. .file_list_row .hover_button {
  3956. visibility: hidden;
  3957. }
  3958. .file_list_row:hover .hover_button {
  3959. visibility: visible;
  3960. }
  3961. #file_list_head {
  3962. border-bottom: 2px solid var(--btn-hover-bg-color);
  3963. }
  3964. .file_list_col_1 {
  3965. flex: 0.3;
  3966. }
  3967. .file_list_col_2 {
  3968. flex: 5;
  3969. }
  3970. .file_list_col_3 {
  3971. flex: 1;
  3972. }
  3973. .file_list_col_4 {
  3974. flex: 1.5;
  3975. }
  3976. .file_list_col_5 {
  3977. flex: 1.5;
  3978. }
  3979. .icon_btn_tip {
  3980. position: absolute;
  3981. margin-top: 2.5em;
  3982. margin-left: -1.7em;
  3983. font-size: 75%;
  3984. color: var(--btn-color);
  3985. width: 6em;
  3986. display: none;
  3987. text-align: center;
  3988. }
  3989. .icon_btn_div {
  3990. position: relative;
  3991. }
  3992. .icon_btn_div:hover .icon_btn_tip {
  3993. display: inline-block;
  3994. }
  3995. .navi_text {
  3996. padding-left: 1em;
  3997. }
  3998. #right_tool_bar_title {
  3999. display: grid;
  4000. }
  4001. .word_space_holder {
  4002. color: rgba(128, 128, 128, 0.19);
  4003. }
  4004. .wbody .case_dropbtn {
  4005. min-width: 3em;
  4006. }
  4007. .indexbody .bld {
  4008. font-weight: 800;
  4009. }
  4010. #dict_bold_right {
  4011. flex: 7;
  4012. overflow-y: scroll;
  4013. padding-bottom: 10em;
  4014. }
  4015. .dict_bold_left {
  4016. flex: 3;
  4017. /*max-width: 17em;*/
  4018. min-width: 10em;
  4019. overflow-y: scroll;
  4020. padding-bottom: 10em;
  4021. }
  4022. .dict_bold_main {
  4023. display: flex;
  4024. height: 100%;
  4025. position: fixed;
  4026. }
  4027. .input_bar {
  4028. flex: 9;
  4029. }
  4030. .float_dlg {
  4031. display: none;
  4032. width: 25em;
  4033. position: absolute;
  4034. right: 0;
  4035. background-color: var(--btn-hover-bg-color);
  4036. padding: 10px;
  4037. border-radius: 5px;
  4038. box-shadow: 0 0 10px var(--main-color);
  4039. z-index: 1;
  4040. }
  4041. .float_dlg_left {
  4042. display: none;
  4043. width: 25em;
  4044. position: absolute;
  4045. background-color: var(--btn-hover-bg-color);
  4046. padding: 10px;
  4047. border-radius: 5px;
  4048. box-shadow: 0 0 10px var(--main-color);
  4049. z-index: 200;
  4050. }
  4051. @-webkit-keyframes spin {
  4052. from {
  4053. -webkit-transform: rotate(0deg);
  4054. }
  4055. to {
  4056. -webkit-transform: rotate(360deg);
  4057. }
  4058. }
  4059. @keyframes spin {
  4060. from {
  4061. transform: rotate(0deg);
  4062. }
  4063. to {
  4064. transform: rotate(360deg);
  4065. }
  4066. }
  4067. .icon_spin {
  4068. -webkit-animation: spin 1.5s linear infinite;
  4069. animation: spin 1.5s linear infinite;
  4070. }
  4071. .trans_text_content img {
  4072. max-width: 100%;
  4073. max-height: 200px;
  4074. width: auto;
  4075. height: auto;
  4076. object-fit: cover;
  4077. background-size: contain;
  4078. }
  4079. .tran img {
  4080. max-width: 100%;
  4081. max-height: 200px;
  4082. width: auto;
  4083. height: auto;
  4084. object-fit: cover;
  4085. background-size: contain;
  4086. }