style.css 74 KB

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