style.css 80 KB

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