style.css 74 KB

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