style.css 76 KB

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