style.css 74 KB

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