style.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432
  1. /*@import url(font.css);*/
  2. /*@import url(day.css);*/
  3. :root {
  4. --bgDisplay: none;
  5. }
  6. .mn-dwn-arw {
  7. border-color: #909090 transparent;
  8. border-style: solid;
  9. border-width: 5px 4px 0 4px;
  10. width: 0;
  11. height: 0;
  12. margin-left: -2px;
  13. top: 50%;
  14. margin-top: -2px;
  15. position: absolute;
  16. }
  17. body {
  18. font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Padauk", Arial, Verdana;
  19. font-style: normal;
  20. color: var(--main-color);
  21. font-weight: 400;
  22. font-size: 13px;
  23. overflow-x: hidden;
  24. }
  25. div {
  26. -webkit-box-sizing: border-box;
  27. -moz-box-sizing: border-box;
  28. box-sizing: border-box;
  29. }
  30. hr {
  31. margin: 14px 0;
  32. border: 1px solid var(--tool-line-color);
  33. transform: scaleY(0.4);
  34. }
  35. input,
  36. button,
  37. textarea,
  38. select,
  39. optgroup,
  40. option,
  41. hr,
  42. h1,
  43. h2,
  44. h3 {
  45. font-family: inherit;
  46. font-size: inherit;
  47. font-style: inherit;
  48. font-weight: inherit;
  49. color: inherit;
  50. background-color: inherit;
  51. -webkit-box-sizing: border-box;
  52. -moz-box-sizing: border-box;
  53. box-sizing: border-box;
  54. }
  55. .main {
  56. padding: 0;
  57. z-index: 1;
  58. }
  59. .mainbody {
  60. padding: 0;
  61. margin: 0;
  62. font-size: 100%;
  63. height: 100%;
  64. width: 100%;
  65. }
  66. .sutta {
  67. font-size: 100%;
  68. }
  69. .sutta_top_blank {
  70. height: 50px;
  71. }
  72. .heading {
  73. font-weight: 700;
  74. font-size: 158%;
  75. text-align: center;
  76. }
  77. h1 {
  78. font-size: 150%;
  79. font-weight: 700;
  80. }
  81. h2 {
  82. font-weight: 700;
  83. }
  84. h3 {
  85. font-weight: 700;
  86. }
  87. ::-webkit-scrollbar {
  88. width: 8px;
  89. height: 8px;
  90. /*display: none;*/
  91. }
  92. /*::-webkit-scrollbar-track {
  93. -webkit-border-radius: 10px;
  94. border-radius: 10px;
  95. background: rgba(85, 85, 85, 0.1);
  96. }*/
  97. ::-webkit-scrollbar-thumb {
  98. -webkit-border-radius: 10px;
  99. border-radius: 10px;
  100. background: rgba(85, 85, 85, 0);
  101. }
  102. :hover::-webkit-scrollbar-thumb {
  103. -webkit-border-radius: 10px;
  104. border-radius: 10px;
  105. background: rgba(85, 85, 85, 0.4);
  106. }
  107. .toc {
  108. margin: 0;
  109. padding: 0 4px 0 10px;
  110. overflow-y: scroll;
  111. overflow-x: hidden;
  112. height: calc(100% - 143px);
  113. height: -moz-calc(100% - 143px);
  114. height: -webkit-calc(100% - 143px);
  115. width: auto;
  116. word-wrap: break-word;
  117. }
  118. #menubartoolbar {
  119. border-top: 1px solid var(--tool-bg-color3);
  120. border-bottom: 1px solid var(--tool-bg-color3);
  121. padding: 0px;
  122. background-color: var(--tool-bg-color);
  123. display: -webkit-flex;
  124. display: -moz-flex;
  125. display: flex;
  126. }
  127. #menubartoolbar:hover select {
  128. background-color: var(--input-bg-color);
  129. color: var(--btn-hover-color);
  130. }
  131. #menubartoolbar select {
  132. width: 100%;
  133. height: 80px;
  134. padding: 0 15px;
  135. border: 0;
  136. background-color: var(--tool-bg-color);
  137. border-radius: 0;
  138. -webkid-border-radius: 0;
  139. font-weight: 400;
  140. font-size: 150%;
  141. color: var(--tool-color);
  142. margin: 0;
  143. }
  144. #menubartoolbar select option {
  145. background-color: var(--tool-bg-color);
  146. color: var(--tool-color);
  147. }
  148. #leftmenuinner {
  149. color: var(--tool-color);
  150. background-color: var(--tool-bg-color);
  151. position: fixed;
  152. display: inline-block;
  153. top: 3.5em;
  154. left: 0;
  155. padding: 0;
  156. height: 100%;
  157. max-width: 40em;
  158. width: auto;
  159. z-index: 15;
  160. -webkit-transition-duration: 0.4s;
  161. transition-duration: 0.4s;
  162. }
  163. .viewswitch_on {
  164. -webkit-transform: translateX(0em);
  165. -moz-transform: translateX (0em);
  166. transform: translateX (0em);
  167. box-shadow: 5px 0 20px 5px var(--shadow-color);
  168. }
  169. .viewswitch_off {
  170. -webkit-transform: translateX(-42em);
  171. -moz-transform: translateX(-42em);
  172. transform: translateX(-42em);
  173. }
  174. #leftmenuinner h1 {
  175. display: none;
  176. }
  177. #leftmenuinnerinner {
  178. }
  179. #id_info_panal {
  180. position: fixed;
  181. height: 0px;
  182. bottom: 0px;
  183. left: 0px;
  184. /*padding: 3px 10px;*/
  185. width: 100%;
  186. background-color: var(--info-bg-color);
  187. border-top: 1px solid var(--border-line-color);
  188. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  189. z-index: 20;
  190. -webkit-transition-duration: 0.4s;
  191. transition-duration: 0.4s;
  192. -webkit-contain: strict;
  193. contain: strict;
  194. }
  195. #id_info_panal_inner {
  196. padding: 20px;
  197. height: calc(100% - 30px);
  198. width: 100%;
  199. overflow-y: auto;
  200. }
  201. .mainview {
  202. background-color: var(--bg-color);
  203. padding: 0 50px;
  204. z-index: 1;
  205. float: left;
  206. -webkit-transition-duration: 0.4s;
  207. transition-duration: 0.4s;
  208. -webkit-contains: layout;
  209. -moz-contains: layout;
  210. contains: layout;
  211. width: 100%;
  212. }
  213. #body_mainview {
  214. }
  215. .toc .tocitems p {
  216. font-size: 90%;
  217. margin: 4px 0 4px 0.5em;
  218. line-height: 1.2;
  219. }
  220. /*
  221. .toc ul {
  222. font-size: 90%;
  223. list-style-type: none;
  224. padding-left: 0px;
  225. line-height: 1.2;
  226. text-indent: 1px;
  227. }
  228. .toc ul li {
  229. text-indent: 1px;
  230. line-height: 1.2;
  231. margin: 5px 0;
  232. }*/
  233. #content {
  234. margin: 0px 5px 10px 5px;
  235. padding: 1px 3px;
  236. }
  237. #navi_bookmark {
  238. display: none;
  239. }
  240. #navi_note {
  241. display: none;
  242. }
  243. #toolbar {
  244. position: fixed;
  245. top: 0;
  246. left: 0;
  247. background-color: var(--tool-bg-color);
  248. color: var(--tool-color);
  249. width: 100%;
  250. font-size: 100%;
  251. z-index: 17;
  252. height: 3.5em;
  253. display: -webkit-flex;
  254. display: -moz-flex;
  255. display: flex;
  256. -webkit-align-items: center;
  257. -moz-align-items: center;
  258. align-items: center;
  259. -webkit-justify-content: space-between;
  260. -moz-justify-content: space-between;
  261. justify-content: space-between;
  262. padding: 0 10px 0 16px;
  263. border-bottom: 1px solid var(--tool-bg-color3);
  264. }
  265. #toolbar::-webkit-scrollbar {
  266. display: none;
  267. }
  268. .toolgroup1 {
  269. min-width: 7em;
  270. display: -webkit-flex;
  271. display: -moz-flex;
  272. display: flex;
  273. -webkit-justify-content: flex-end;
  274. -moz-justify-content: flex-end;
  275. justify-content: flex-end;
  276. -webkit-align-items: center;
  277. -moz-align-items: center;
  278. align-items: center;
  279. flex-wrap: nowrap;
  280. }
  281. .debug_info {
  282. position: fixed;
  283. left: 0;
  284. top: 0;
  285. opacity: 1;
  286. width: 100%;
  287. height: 100%;
  288. background-color: rgba(25, 25, 25, 0.4);
  289. display: none;
  290. -webkit-align-items: center;
  291. -moz-align-items: center;
  292. -webkit-justify-content: center;
  293. -moz-justify-content: center;
  294. justify-content: center;
  295. z-index: 21;
  296. }
  297. .debug_info #debug {
  298. background-color: var(--tool-bg-color);
  299. color: var(--tool-color);
  300. font-size: 120%;
  301. font-weight: 400;
  302. border-radius: 4px;
  303. height: 150px;
  304. min-width: 300px;
  305. padding: 30px;
  306. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  307. display: -webkit-flex;
  308. display: -moz-flex;
  309. display: flex;
  310. -webkit-align-items: center;
  311. -moz-align-items: center;
  312. -webkit-justify-content: center;
  313. -moz-justify-content: center;
  314. justify-content: center;
  315. }
  316. #word_table {
  317. }
  318. #sutta_text {
  319. margin-bottom: 30px;
  320. }
  321. .sutta_title {
  322. color: var(--main-color);
  323. width: 100%;
  324. border-left: 15px solid #bbb;
  325. margin: 30px 0 20px 0;
  326. padding: 1px 0.5em;
  327. }
  328. .sutta_title a {
  329. float: right;
  330. }
  331. .tran_h1_cn,
  332. .tran_h1_en {
  333. font-size: 100%;
  334. font-weight: 400;
  335. line-height: 1.1;
  336. margin: 0px 2px;
  337. }
  338. .sutta_paragraph,
  339. .pardiv {
  340. width: 100%;
  341. margin-bottom: 3em;
  342. display: -webkit-inline-flex;
  343. display: -moz-inline-flex;
  344. display: inline-flex;
  345. flex-wrap: wrap;
  346. }
  347. .pardiv {
  348. }
  349. .wbwparblock,
  350. .wbwdiv {
  351. display: -webkit-inline-flex;
  352. display: -moz-inline-flex;
  353. display: inline-flex;
  354. -webkit-align-items: flex-start;
  355. -moz-align-items: flex-start;
  356. align-items: flex-start;
  357. -webkit-flex-wrap: wrap;
  358. -moz-flex-wrap: wrap;
  359. flex-wrap: wrap;
  360. }
  361. .wbwdiv {
  362. -webkit-flex: 7;
  363. -moz-flex: 7;
  364. flex: 7;
  365. }
  366. /*
  367. .pali_par_gatha {
  368. width: 50%;
  369. float: left;
  370. padding: 0;
  371. margin-left: 2em;
  372. }*/
  373. .trandiv {
  374. -webkit-flex: 3;
  375. -moz-flex: 3;
  376. flex: 3;
  377. padding: 0 5px;
  378. /*margin: 0 0 0 30%-220px;*/
  379. }
  380. .tran_par_en {
  381. font-size: 80%;
  382. text-indent: 0;
  383. margin-top: 0;
  384. }
  385. .tran_par_cn {
  386. font-size: 90%;
  387. text-indent: 0;
  388. margin-top: 0;
  389. }
  390. .par_note,
  391. .wnotediv {
  392. /*display: none;*/
  393. background-color: var(--bg-color);
  394. /*position: absolute;*/
  395. flex: 0 0 100%;
  396. font-size: 85%;
  397. margin: 12px 0px;
  398. padding: 5px 18px;
  399. }
  400. /*.par_note p, .wnotediv p {
  401. margin: 5px 2px;
  402. }*/
  403. .word {
  404. width: Auto;
  405. float: left;
  406. margin: 0 0.5em 1.8em 0;
  407. page-break-inside: avoid;
  408. }
  409. .word_punc {
  410. width: Auto;
  411. float: left;
  412. margin: 0 0.5em 1.8em -0.4em;
  413. line-height: 1em;
  414. }
  415. .word_detail,
  416. .wbody {
  417. font-weight: 300;
  418. }
  419. .pali,
  420. .whead {
  421. font-weight: 500;
  422. font-size: 110%;
  423. padding: 0px 2px;
  424. margin: 0px;
  425. line-height: 1.5em;
  426. }
  427. .mean {
  428. line-height: 1em;
  429. font-weight: 400;
  430. font-size: 90%;
  431. margin: 0;
  432. clear: both;
  433. display: -webkit-flex;
  434. display: -moz-flex;
  435. display: flex;
  436. align-items: center;
  437. -webkit-justify-content: space-between;
  438. -moz-justify-content: space-between;
  439. justify-content: space-between;
  440. }
  441. .ID {
  442. font-size: 70%;
  443. margin: 0;
  444. float: none;
  445. clear: both;
  446. display: none;
  447. }
  448. .org,
  449. .om,
  450. .case {
  451. font-size: 80%;
  452. margin: 0.3em 0;
  453. clear: both;
  454. color: var(--detail-color);
  455. line-height: 1.3em;
  456. display: flex;
  457. }
  458. .om {
  459. }
  460. .case {
  461. }
  462. .org {
  463. }
  464. .v_bld {
  465. font-weight: 700;
  466. }
  467. .cell,
  468. .case .type {
  469. margin: 0 0.3em 0 1px;
  470. padding: 0px 2px;
  471. outline: 1px solid var(--detail-color);
  472. outline-offset: -1px;
  473. line-height: 1.5em;
  474. }
  475. /*不确定的显示为红色*/
  476. .case_dropbtn .cell2 a {
  477. background-color: #f80;
  478. color: var(--btn-hover-color);
  479. font-weight: 300;
  480. line-height: 1em;
  481. z-index: 100;
  482. }
  483. .clr {
  484. -webkit-flex: 0 0 100%;
  485. -moz-flex: 0 0 100%;
  486. flex: 0 0 100%;
  487. }
  488. .enter {
  489. clear: left;
  490. }
  491. .tran_input {
  492. display: none;
  493. clear: both;
  494. }
  495. .hidden {
  496. display: none;
  497. }
  498. #modifywin {
  499. color: var(--tool-color);
  500. width: auto;
  501. background-color: var(--tool-bg-color3);
  502. position: absolute;
  503. border-radius: 5px;
  504. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  505. border-color: var(--btn-border-line-color);
  506. display: none;
  507. z-index: 10;
  508. }
  509. #modifywin p {
  510. margin: 0;
  511. padding: 0;
  512. }
  513. #modifywin .modifybutton {
  514. padding: 5px 0;
  515. border-top: 1px solid var(--tool-line-color);
  516. background-color: var(--tool-bg-color);
  517. }
  518. #modifywin .modifybutton button {
  519. font-size: 70%;
  520. border-color: var(--tool-color);
  521. border-width: 1px;
  522. }
  523. #modifywin .modifybutton button:hover {
  524. border-color: var(--link-color);
  525. background-color: var(--link-color);
  526. border-width: 1px;
  527. }
  528. #modify_detaile,
  529. #modify_bookmark,
  530. #modify_note,
  531. #modify_spell {
  532. display: none;
  533. padding: 10px 15px;
  534. color: var(--btn-color);
  535. background-color: var(--tool-bg-color);
  536. }
  537. #modify_detaile {
  538. display: block;
  539. }
  540. .modifycancel {
  541. font-size: 100%;
  542. padding: 10px;
  543. border-top: 1px solid var(--tool-line-color);
  544. }
  545. #modify_apply {
  546. padding: 0 15px;
  547. background-color: var(--tool-bg-color);
  548. border-bottom-right-radius: 5px;
  549. border-bottom-left-radius: 5px;
  550. }
  551. .bookmarkcolorblock {
  552. color: #009191;
  553. padding: 4px 4px;
  554. width: 1.2em;
  555. height: 1.5em;
  556. display: inline-block;
  557. margin: 0;
  558. text-align: center;
  559. line-height: 1.5em;
  560. }
  561. .bookmarkcolor0 {
  562. background-color: rgba(0, 0, 0, 0);
  563. }
  564. .bookmarkcolor1 {
  565. background-color: #f99;
  566. }
  567. .bookmarkcolor2 {
  568. background-color: #ff9;
  569. }
  570. .bookmarkcolor3 {
  571. background-color: #9f9;
  572. }
  573. .bookmarkcolor4 {
  574. background-color: #9ff;
  575. }
  576. .bookmarkcolor5 {
  577. background-color: #99f;
  578. }
  579. /*?x?没找到*/
  580. .bookmarkcolorx {
  581. background-color: var(--bookx);
  582. }
  583. /*?a?自动匹配*/
  584. .bookmarkcolora {
  585. /*background-color: var(--booka);*/
  586. background: linear-gradient(85deg, #e6f0ff, #ffffff);
  587. }
  588. .bookmarkcolora,
  589. .bookmarkcolorx,
  590. .bookmarkcolor0,
  591. .bookmarkcolor1,
  592. .bookmarkcolor2,
  593. .bookmarkcolor3,
  594. .bookmarkcolor4,
  595. .bookmarkcolor5 {
  596. padding: 0px 2px;
  597. }
  598. .bma {
  599. display: none;
  600. }
  601. .bmx {
  602. }
  603. .bm1 {
  604. }
  605. .bm2 {
  606. }
  607. .bm3 {
  608. }
  609. .bm4 {
  610. }
  611. .bm5 {
  612. }
  613. #navi_bookmark_inner h3 {
  614. font-size: 100%;
  615. font-weight: 700;
  616. }
  617. /*.editor{
  618. display:inline;
  619. }*/
  620. .debugMsg {
  621. display: none;
  622. }
  623. /*
  624. table {
  625. border-collapse: collapse;
  626. background-color: #FFFFFF;
  627. width: 100%;
  628. }
  629. td,
  630. th {
  631. border: 1px solid #D2D2D2;
  632. font-size: 80%;
  633. vertical-align: baseline;
  634. }
  635. tr.h {
  636. background-color: #F5F5F5;
  637. font-weight: 500;
  638. color: #000000;
  639. }
  640. */
  641. .center {
  642. text-align: center;
  643. }
  644. #device {
  645. margin-right: 16px;
  646. }
  647. #device a:link,
  648. #device a:visited {
  649. color: #4688f1;
  650. text-decoration: none;
  651. }
  652. #device a:focus {
  653. outline: 1px dotted;
  654. }
  655. #device a:hover,
  656. #device a:active {
  657. color: #4688f1;
  658. outline: none;
  659. text-decoration: underline;
  660. }
  661. .select_mode a:link,
  662. #device a:visited {
  663. color: #aaa;
  664. text-decoration: none;
  665. }
  666. .select_mode a:focus {
  667. outline: 1px dotted;
  668. }
  669. .select_mode a:hover,
  670. #device a:active {
  671. color: #000;
  672. outline: none;
  673. text-decoration: underline;
  674. }
  675. button,
  676. input[type="button"],
  677. input[type="submit"] {
  678. font-weight: 500;
  679. font-size: 90%;
  680. background-color: none;
  681. border: 2px solid var(--btn-border-color);
  682. border-radius: 99px;
  683. margin: 2px;
  684. padding: 2px 12px;
  685. -webkit-transition-duration: 0.2s;
  686. -moz-transition-duration: 0.2s;
  687. transition-duration: 0.2s;
  688. cursor: pointer;
  689. display: -webkit-inline-flex;
  690. display: -moz-inline-flex;
  691. display: inline-flex;
  692. -webkit-align-items: center;
  693. -moz-align-items: center;
  694. align-items: center;
  695. -webkit-flex-wrap: nowrap;
  696. -moz-flex-wrap: nowrap;
  697. flex-wrap: nowrap;
  698. -webkit-justify-content: center;
  699. -moz-justify-content: center;
  700. justify-content: center;
  701. }
  702. button:hover,
  703. input[type="button"]:hover,
  704. input[type="submit"]:hover {
  705. background-color: var(--btn-border-color);
  706. color: var(--tool-color);
  707. }
  708. button:disabled,
  709. input[type="button"]:disabled,
  710. input[type="submit"]:disabled {
  711. color: #878787;
  712. border-color: #878787;
  713. }
  714. .btn-group {
  715. position: relative;
  716. width: auto;
  717. display: -webkit-flex;
  718. display: -moz-flex;
  719. display: flex;
  720. -webkit-flex-wrap: nowrap;
  721. -moz-flex-wrap: nowrap;
  722. flex-wrap: nowrap;
  723. }
  724. /*
  725. .btn-group .btn+.btn {
  726. margin-right: -7px;
  727. }*/
  728. .btn-group > .btn:not(:first-child):not(:last-child) {
  729. border-radius: 0;
  730. }
  731. .btn-group > .btn:first-child:not(:last-child) {
  732. border-top-right-radius: 0;
  733. border-bottom-right-radius: 0;
  734. margin-right: -1px;
  735. }
  736. .btn-group > .btn:last-child:not(:first-child) {
  737. border-top-left-radius: 0;
  738. border-bottom-left-radius: 0;
  739. }
  740. /* 容器 <div> - 需要定位下拉内容 */
  741. .dropdown {
  742. position: relative;
  743. display: inline-flex;
  744. }
  745. /* 下拉内容 (默认隐藏) */
  746. .dropdown-content {
  747. border-radius: 3px;
  748. display: none;
  749. position: absolute;
  750. background-color: var(--bg-color);
  751. min-width: 60px;
  752. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  753. z-index: 6;
  754. top: 100%;
  755. right: 0;
  756. }
  757. /*使用一半宽度 (120/2 = 60) 来居中提示工具*/
  758. .dropdown-content::after {
  759. content: " ";
  760. position: absolute;
  761. bottom: 100%;
  762. right: 0;
  763. margin-right: 20px;
  764. border-width: 5px;
  765. border-style: solid;
  766. border-color: transparent transparent var(--bg-color) transparent;
  767. }
  768. /* 下拉菜单的链接 */
  769. .dropdown-content a {
  770. padding: 6px 6px;
  771. text-decoration: none;
  772. display: block;
  773. white-space: nowrap;
  774. color: var(--main-color);
  775. }
  776. /* 鼠标移上去后修改下拉菜单链接颜色 */
  777. .dropdown-content a:hover {
  778. background-color: var(--btn-hover-bg-color);
  779. color: var(--btn-hover-color);
  780. border-radius: 3px;
  781. }
  782. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  783. .dropdown:hover .icon_btn {
  784. background-color: var(--btn-hover-bg-color);
  785. border-color: var(--btn-border-line-color);
  786. }
  787. .dropdown:hover .icon {
  788. fill: var(--btn-hover-color);
  789. }
  790. #file_new {
  791. width: 8em;
  792. }
  793. .tran_words {
  794. font-size: 80%;
  795. border-width: 1px;
  796. border-style: solid;
  797. border-color: blue;
  798. padding: 4px;
  799. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  800. border-radius: 4px;
  801. }
  802. #menu_bookmark,
  803. #menu_file,
  804. #menu_display,
  805. #menu_dict,
  806. #menu_file,
  807. #menu_pali_cannon,
  808. #menu_layout,
  809. #menu_project,
  810. #menu_plugin {
  811. display: none;
  812. }
  813. .submenu {
  814. background-color: var(--tool-bg-color3);
  815. border-radius: 6px;
  816. color: var(--tool-color);
  817. margin: 4px 0;
  818. transition: all 0.4s ease;
  819. }
  820. .submenu_title {
  821. display: flex;
  822. color: var(--btn-color);
  823. background-color: unset;
  824. padding: 8px 12px;
  825. cursor: pointer;
  826. /*width: 100%;*/
  827. margin: 0px;
  828. align-items: center;
  829. justify-content: space-between;
  830. }
  831. .submenu_title:hover {
  832. color: var(--tool-color);
  833. }
  834. .submenu_title:hover .icon {
  835. fill: var(--tool-color);
  836. }
  837. .submenu_details {
  838. opacity: 0;
  839. max-height: 0px;
  840. background-color: var(--tool-bg-color1);
  841. color: var(--btn-color);
  842. font-weight: 400;
  843. border-bottom-left-radius: 6px;
  844. border-bottom-right-radius: 6px;
  845. padding: 0px;
  846. width: 100%;
  847. transition: all 0.4s ease;
  848. overflow: hidden;
  849. }
  850. #btn_close_printprev {
  851. position: fixed;
  852. background-color: rgba(0, 0, 0, 0);
  853. width: 2.5em;
  854. height: 2.5em;
  855. font-size: 2em;
  856. color: #fff;
  857. display: block;
  858. }
  859. #btn_close_printprev a {
  860. width: 2em;
  861. height: 2em;
  862. text-decoration: none;
  863. color: rgba(0, 0, 0, 0);
  864. }
  865. #btn_close_printprev a:hover {
  866. color: #fff;
  867. text-decoration: none;
  868. }
  869. #basic_dict_list p {
  870. padding: 0px;
  871. margin: 2px 4px;
  872. }
  873. .grm_add_mean {
  874. color: #bd8b18;
  875. }
  876. .grm_add_mean_user {
  877. color: var(--mean-user-color);
  878. }
  879. /* 下拉按钮样式 */
  880. .case_dropbtn {
  881. }
  882. .case_dropdown .case_dropbtn {
  883. display: flex;
  884. cursor: pointer;
  885. margin: 0px;
  886. }
  887. /* 容器 <div> - 需要定位下拉内容 */
  888. .case_dropdown {
  889. padding: 0;
  890. cursor: pointer;
  891. min-width: 3em;
  892. }
  893. /* 下拉内容 (默认隐藏) */
  894. .case_dropdown-content {
  895. margin: 0.3em;
  896. display: none;
  897. position: absolute;
  898. background-color: var(--drop-bg-color);
  899. min-width: 8em;
  900. max-width: 30em;
  901. margin: -1px 0px;
  902. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  903. color: var(--main-color);
  904. z-index: 200;
  905. }
  906. .case_dropdown-title {
  907. padding: 0.1em 0.1em;
  908. display: block;
  909. text-align: left;
  910. background-color: #fdfdbf;
  911. font-size: 80%;
  912. cursor: default;
  913. font-weight: 500;
  914. }
  915. /* 下拉菜单的链接 */
  916. .case_dropdown-content a {
  917. padding: 0.3em 0.4em;
  918. line-height: 160%;
  919. text-decoration: none;
  920. display: block;
  921. cursor: pointer;
  922. text-align: left;
  923. color: var(--main-color);
  924. }
  925. /* 鼠标移上去后修改下拉菜单链接颜色 */
  926. .case_dropdown-content a:hover {
  927. background-color: var(--link-color);
  928. color: var(--btn-hover-color);
  929. }
  930. /* 在鼠标移上去后显示下拉菜单 */
  931. .case_dropdown:hover .case_dropdown-content {
  932. display: block;
  933. }
  934. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  935. .case_dropdown:hover .case_dropbtn {
  936. opacity: 0.4;
  937. }
  938. /*下拉菜单结束*/
  939. /* 子下拉按钮样式 */
  940. .case_dropbtn_sub {
  941. }
  942. .case_dropdown_sub .case_dropbtn_sub {
  943. display: flex;
  944. cursor: pointer;
  945. margin: 0px;
  946. }
  947. /* 容器 <div> - 需要定位下拉内容 */
  948. .case_dropdown_sub {
  949. padding: 0;
  950. cursor: pointer;
  951. min-width: 3em;
  952. }
  953. /* 下拉内容 (默认隐藏) */
  954. .case_dropdown-content_sub {
  955. margin: 0.3em;
  956. display: none;
  957. position: absolute;
  958. background-color: var(--drop-bg-color);
  959. min-width: 8em;
  960. max-width: 30em;
  961. margin: -1px 0px;
  962. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  963. color: var(--main-color);
  964. z-index: 200;
  965. left: 5em;
  966. }
  967. .case_dropdown-title_sub {
  968. padding: 0.1em 0.1em;
  969. display: block;
  970. text-align: left;
  971. background-color: #fdfdbf;
  972. font-size: 80%;
  973. cursor: default;
  974. font-weight: 500;
  975. }
  976. /* 下拉菜单的链接 */
  977. .case_dropdown-content_sub a {
  978. /*padding: 0.3em 0.4em;*/
  979. line-height: 160%;
  980. text-decoration: none;
  981. display: block;
  982. cursor: pointer;
  983. text-align: left;
  984. }
  985. /* 鼠标移上去后修改下拉菜单链接颜色 */
  986. .case_dropdown-content_sub a:hover {
  987. background-color: var(--link-color);
  988. color: var(--btn-hover-color);
  989. }
  990. /* 在鼠标移上去后显示下拉菜单 */
  991. .case_dropdown_sub:hover .case_dropdown-content_sub {
  992. display: block;
  993. }
  994. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  995. .case_dropdown_sub:hover .case_dropbtn_sub {
  996. opacity: 0.4;
  997. }
  998. /*下拉菜单结束*/
  999. .wbody:hover .edit_icon {
  1000. opacity: 1;
  1001. }
  1002. #id_dict_matched dict {
  1003. padding: 0px;
  1004. margin: 6px 0 0 0;
  1005. font-size: 1em;
  1006. display: block;
  1007. border-bottom: 2px solid #00f;
  1008. }
  1009. #id_dict_matched dict span {
  1010. background: #00f;
  1011. color: #fff;
  1012. }
  1013. #id_dict_matched pali {
  1014. padding: 0px;
  1015. margin: 0px;
  1016. font-size: 0.9em;
  1017. font-weight: 700;
  1018. display: block;
  1019. background: #ccf;
  1020. }
  1021. #id_dict_matched pali:hover {
  1022. background: #aaf;
  1023. }
  1024. #id_dict_matched org {
  1025. padding: 0px;
  1026. margin: 0px;
  1027. font-size: 0.8em;
  1028. display: block;
  1029. background: #cdf;
  1030. }
  1031. #id_dict_matched org:hover {
  1032. background: #aaf;
  1033. }
  1034. #id_dict_matched mean {
  1035. padding: 0px;
  1036. margin: 0px;
  1037. font-size: 0.8em;
  1038. display: block;
  1039. background: #ccf;
  1040. background: #cdf;
  1041. }
  1042. #id_dict_matched mean:hover {
  1043. background: #aaf;
  1044. }
  1045. #id_dict_matched case {
  1046. padding: 0px;
  1047. margin: 0 0 4px 0;
  1048. font-size: 0.8em;
  1049. display: block;
  1050. background: #cdf;
  1051. }
  1052. #id_dict_matched case:hover {
  1053. background: #aaf;
  1054. }
  1055. /*
  1056. #modify_bookmark div {
  1057. padding: 5px;
  1058. }
  1059. #modify_bookmark div span {
  1060. cursor: pointer;
  1061. border-radius: 4px;
  1062. border: 1px solid #FFF;
  1063. }
  1064. #modify_bookmark div span:hover {
  1065. border: 1px solid #000000;
  1066. }
  1067. /* option tab css */
  1068. ul,
  1069. li {
  1070. white-space: normal;
  1071. color: inherit;
  1072. margin: 0px;
  1073. padding: 0px;
  1074. word-break: keep-all;
  1075. text-overflow: ellipsis;
  1076. }
  1077. .bookmark-tab {
  1078. position: relative;
  1079. height: 100%;
  1080. }
  1081. .bookmark-tab li {
  1082. font-size: 12px;
  1083. cursor: pointer;
  1084. outline-offset: -2px;
  1085. outline-color: var(--main-color);
  1086. }
  1087. .bookmark-tab li:hover {
  1088. box-shadow: 0 0 0 2px var(--link-color) inset;
  1089. }
  1090. .gramma-tab {
  1091. position: relative;
  1092. height: 100%;
  1093. border-bottom: 1px solid #555;
  1094. margin: 3px 0px;
  1095. }
  1096. .gramma-tab li {
  1097. padding: 4px 5px;
  1098. display: inline-block;
  1099. font-size: 0.8em;
  1100. text-align: center;
  1101. margin-left: 0px;
  1102. margin-right: 0px;
  1103. cursor: pointer;
  1104. height: 100%;
  1105. line-height: 1em;
  1106. margin-bottom: 4px;
  1107. border: 1px solid #fff;
  1108. border-radius: 3px;
  1109. transition: all ease 0.3s;
  1110. }
  1111. .gramma-tab li:first-child {
  1112. margin-left: 0px;
  1113. }
  1114. .gramma-tab li:hover {
  1115. }
  1116. .common-tab {
  1117. text-align: center;
  1118. width: auto;
  1119. position: relative;
  1120. height: 100%;
  1121. display: -webkit-flex;
  1122. display: -moz-flex;
  1123. display: flex;
  1124. margin: 15px 15px 0 15px;
  1125. align-items: flex-end;
  1126. color: var(--main-color);
  1127. font-weight: 500;
  1128. background-color: var(--tool-bg-color3);
  1129. z-index: 11;
  1130. }
  1131. .common-tab_li {
  1132. color: var(--btn-color);
  1133. margin: 0;
  1134. padding: 8px 10px;
  1135. display: inline-block;
  1136. cursor: pointer;
  1137. border: 1px solid var(--nocolor);
  1138. border-bottom: 0px;
  1139. }
  1140. .common-tab_li_act {
  1141. color: var(--tool-color);
  1142. margin: 0;
  1143. padding: 8px 10px;
  1144. display: inline-block;
  1145. cursor: pointer;
  1146. box-shadow: 0 1px 0 0 var(--tool-bg-color);
  1147. background-color: var(--tool-bg-color);
  1148. border: 1px solid var(--nocolor);
  1149. border-bottom: 0px;
  1150. border-top-right-radius: 4px;
  1151. border-top-left-radius: 4px;
  1152. }
  1153. /*
  1154. .common-tab li:first-child {
  1155. margin-left: 0px;
  1156. }
  1157. .common-tab li:last-child {
  1158. margin-right: 0px;
  1159. }
  1160. */
  1161. .common-tab_li:hover {
  1162. background-color: var(--btn-hover-bg-color);
  1163. border: 1px solid var(--tool-line-color);
  1164. border-bottom: 0px;
  1165. border-top-right-radius: 4px;
  1166. border-top-left-radius: 4px;
  1167. }
  1168. #export_data {
  1169. display: none;
  1170. }
  1171. .dict_row0 {
  1172. background: #fff;
  1173. }
  1174. .dict_row-1 {
  1175. background: #ffd;
  1176. }
  1177. .dict_row-2 {
  1178. background: #ffb;
  1179. }
  1180. .dict_row0 {
  1181. background: #fff;
  1182. }
  1183. .dict_row1 {
  1184. background: #ffd;
  1185. }
  1186. .dict_row2 {
  1187. background: #ffb;
  1188. }
  1189. .dict_row3 {
  1190. background: #ff9;
  1191. }
  1192. .dict_row4 {
  1193. background: #ff7;
  1194. }
  1195. .dict_row5 {
  1196. background: #ff5;
  1197. }
  1198. .dict_row6 {
  1199. background: #ff3;
  1200. }
  1201. .dict_row_new {
  1202. background: #f5f5f5;
  1203. width: auto;
  1204. }
  1205. .word_parent {
  1206. margin: 2px;
  1207. padding: 2px;
  1208. font-size: 80%;
  1209. }
  1210. .word_current {
  1211. margin: 2px;
  1212. padding-left: 0.5em;
  1213. font-size: 100%;
  1214. font-weight: 700;
  1215. }
  1216. .word_child {
  1217. margin: 2px;
  1218. padding-left: 2em;
  1219. font-size: 80%;
  1220. }
  1221. .mean_block span {
  1222. background-color: #aaf;
  1223. margin: 0;
  1224. padding: 0 3px;
  1225. border-radius: 4px;
  1226. }
  1227. /*
  1228. .mean_block span:hover,
  1229. span:active {
  1230. cursor: pointer;
  1231. background-color: #E0DDDD;
  1232. margin: 0;
  1233. padding: 0 3px;
  1234. border-radius: 4px;
  1235. }*/
  1236. .fun_block {
  1237. background-color: var(--tool-bg-color);
  1238. color: var(--tool-color);
  1239. width: 50em;
  1240. padding: 20px 40px;
  1241. margin-bottom: 20px;
  1242. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  1243. border-radius: 8px;
  1244. }
  1245. .fun_block h2 {
  1246. border-bottom: 1px solid var(--tool-line-color);
  1247. margin-bottom: 1em;
  1248. padding-bottom: 10px;
  1249. font-size: 120%;
  1250. color: var(--tool-color);
  1251. }
  1252. #userfilelist {
  1253. display: inline-block;
  1254. width: 100%;
  1255. }
  1256. #id_app_name {
  1257. font-size: 200%;
  1258. font-weight: 400;
  1259. color: #1eafff;
  1260. padding: 25px 30px;
  1261. }
  1262. .mean_cell {
  1263. display: inline-block;
  1264. cursor: pointer;
  1265. border: black solid thin;
  1266. margin: 2px 2px;
  1267. padding: 1px 0;
  1268. border-radius: 4px;
  1269. background-color: #ececec;
  1270. }
  1271. .mean_inner {
  1272. display: inline;
  1273. }
  1274. .mean_button {
  1275. display: none;
  1276. margin: 0;
  1277. padding: 1px 5px;
  1278. }
  1279. .mean_cell:hover .mean_button {
  1280. display: inline;
  1281. }
  1282. .mean_button:hover {
  1283. background-color: #3e8e41;
  1284. }
  1285. .button_shell {
  1286. display: inline-block;
  1287. width: 1em;
  1288. }
  1289. #id_text_edit_form textarea {
  1290. font-size: 16px;
  1291. width: 99%;
  1292. }
  1293. .debugMsg > textarea {
  1294. width: 60%;
  1295. }
  1296. /*
  1297. .submitbtn {
  1298. border: 1px solid #DCDCDC;
  1299. padding: 4px 8px;
  1300. font-size: 13px;
  1301. font-weight: 400;
  1302. min-height: 1em;
  1303. color: #009191;
  1304. background-color: #F9F9F9;
  1305. border-radius: 4px;
  1306. margin: 0 2px;
  1307. -webkit-transition-duration: 0.2s;
  1308. transition-duration: 0.2;
  1309. cursor: pointer;
  1310. }
  1311. .submitbtn:hover {
  1312. background-color: #4688F1;
  1313. border: 1px solid #4688F1;
  1314. color: #FFFFFF;
  1315. }
  1316. .tool_button {}
  1317. */
  1318. .edit_tran_button {
  1319. display: inline;
  1320. height: 1.5em;
  1321. padding: 0 5px;
  1322. margin: 0 3px 0 0;
  1323. opacity: 0.7;
  1324. }
  1325. .edit_tran_button:hover {
  1326. opacity: 1;
  1327. }
  1328. @keyframes viewbug {
  1329. 0% {
  1330. opacity: 0;
  1331. }
  1332. 40% {
  1333. opacity: 1;
  1334. }
  1335. 60% {
  1336. opacity: 1;
  1337. }
  1338. 100% {
  1339. opacity: 0;
  1340. }
  1341. }
  1342. .note_sen {
  1343. font-size: 90%;
  1344. color: var(--detail-color);
  1345. }
  1346. .comm_par {
  1347. font-size: 80%;
  1348. padding: 16px;
  1349. border-top: 1px solid var(--main-color);
  1350. border-bottom: 1px solid var(--main-color);
  1351. }
  1352. .imgbutton {
  1353. border: 0;
  1354. padding: 0;
  1355. opacity: 0.6;
  1356. }
  1357. .imgbutton:hover {
  1358. border: 0;
  1359. padding: 0;
  1360. opacity: 1;
  1361. background: none;
  1362. }
  1363. .imgbutton:hover .icon {
  1364. fill: var(--link-color);
  1365. }
  1366. .in_word_button {
  1367. margin: 0px 4px;
  1368. outline: 1px solid var(--detail-color);
  1369. outline-offset: -1px;
  1370. cursor: pointer;
  1371. }
  1372. .un_pali {
  1373. color: #aaf;
  1374. }
  1375. .un_begin {
  1376. color: #aaf;
  1377. }
  1378. .un_end {
  1379. color: #aaf;
  1380. }
  1381. .paliword1 {
  1382. }
  1383. .paliword2 {
  1384. margin: 0.3em 0;
  1385. clear: left;
  1386. display: none;
  1387. }
  1388. /*
  1389. .mean table {
  1390. border-collapse: collapse;
  1391. background-color: #FFFFFF;
  1392. width: 100%;
  1393. }
  1394. .mean td,th {
  1395. border: 1px solid #D2D2D2;
  1396. font-size: 100%;
  1397. vertical-align: baseline;
  1398. }
  1399. .mean tr.h {
  1400. background-color: #F5F5F5;
  1401. font-weight: 500;
  1402. color: #000000;
  1403. }
  1404. */
  1405. #id_palicannon_index_filelist li {
  1406. margin-left: 1em;
  1407. overflow: hidden;
  1408. font-size: 95%;
  1409. }
  1410. #input_meaning {
  1411. width: 90%;
  1412. }
  1413. #input_org {
  1414. width: 90%;
  1415. }
  1416. #input_om {
  1417. width: 90%;
  1418. }
  1419. #input_case {
  1420. width: 90%;
  1421. display: none;
  1422. }
  1423. .tocitems li {
  1424. overflow: hidden;
  1425. }
  1426. .toc_h_0 {
  1427. display: none;
  1428. }
  1429. .toc_h_1 {
  1430. padding-left: 0;
  1431. }
  1432. .toc_h_2 {
  1433. padding-left: 1em;
  1434. }
  1435. .toc_h_3 {
  1436. padding-left: 2em;
  1437. }
  1438. .toc_h_4 {
  1439. padding-left: 3em;
  1440. }
  1441. .head_par {
  1442. width: 100%;
  1443. font-weight: 700;
  1444. }
  1445. .head_par .head_pali_1 {
  1446. text-align: center;
  1447. font-size: 200%;
  1448. border-bottom: 3px solid var(--main-color);
  1449. }
  1450. .head_par .head_pali_2 {
  1451. text-align: center;
  1452. font-size: 150%;
  1453. }
  1454. .head_par .head_pali_3 {
  1455. font-size: 120%;
  1456. }
  1457. .head_par .head_pali_4 {
  1458. font-size: 100%;
  1459. }
  1460. #id_text_edit_form {
  1461. padding: 12px;
  1462. color: var(--btn-color);
  1463. background-color: var(--tool-bg-color);
  1464. width: 50%;
  1465. position: fixed;
  1466. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  1467. left: 200px;
  1468. top: 200px;
  1469. display: none;
  1470. z-index: 18;
  1471. border-radius: 2px;
  1472. }
  1473. #id_text_edit_author {
  1474. width: 300px;
  1475. }
  1476. #id_text_edit_language {
  1477. margin-right: 16px;
  1478. }
  1479. .dialog-title {
  1480. padding-bottom: 5px;
  1481. text-align: center;
  1482. vertical-align: middle;
  1483. width: 100%;
  1484. font-weight: 500;
  1485. }
  1486. #id_text_edit_caption {
  1487. display: flex;
  1488. flex-wrap: wrap;
  1489. cursor: move;
  1490. justify-content: space-between;
  1491. }
  1492. .blackscreen {
  1493. position: fixed;
  1494. left: 0;
  1495. top: 0;
  1496. width: 100%;
  1497. height: 100%;
  1498. background-color: rgba(25, 25, 25, 0.6);
  1499. display: none;
  1500. z-index: 14;
  1501. }
  1502. .nocolor {
  1503. opacity: 0;
  1504. }
  1505. .tree_expand {
  1506. padding: 5px 1px;
  1507. border: 1px solid #dcdcdc;
  1508. }
  1509. .pnotediv {
  1510. width: 100%;
  1511. padding: 5px;
  1512. box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
  1513. display: none;
  1514. }
  1515. .note_parblock:first-child {
  1516. border-top: none;
  1517. padding-top: 0;
  1518. }
  1519. .note_parblock {
  1520. border-bottom: var(--border);
  1521. padding: 1em 0;
  1522. }
  1523. .tran_parblock:first-child {
  1524. border-top: none;
  1525. padding-top: 0;
  1526. }
  1527. .tran_parblock {
  1528. border-top: var(--border);
  1529. padding: 1em 0;
  1530. }
  1531. .en_text {
  1532. font-size: 150%;
  1533. }
  1534. .zh_text {
  1535. font-size: 150%;
  1536. }
  1537. .tw_text {
  1538. font-size: 150%;
  1539. }
  1540. .wnotediv {
  1541. font-size: 85%;
  1542. border-left: 5px solid #cdc;
  1543. margin: 2px 5px 2px 1em;
  1544. padding: 2px;
  1545. clear: left;
  1546. }
  1547. .wnotediv p {
  1548. margin: 5px 2px;
  1549. }
  1550. .full_note_handle .full_note {
  1551. display: none;
  1552. }
  1553. /* 在鼠标移上去后显示下拉菜单 */
  1554. .full_note_handle:hover .full_note {
  1555. display: inline;
  1556. }
  1557. .edit_tool {
  1558. flex: 0 0 100%;
  1559. display: block;
  1560. margin: 0;
  1561. }
  1562. .edit_tool .icon {
  1563. height: 1em;
  1564. width: 1em;
  1565. }
  1566. .head_tool {
  1567. margin-top: 3em;
  1568. color: var(--detail-color);
  1569. }
  1570. .par_heading {
  1571. flex: 0 0 100%;
  1572. margin-bottom: 2em;
  1573. font-family: "Noto Serif", "Noto Sans TC", "Noto Sans SC";
  1574. }
  1575. .par_heading .heading_parblock_1_pali {
  1576. font-size: 170%;
  1577. font-weight: 700;
  1578. border-bottom: 1px solid var(--border-line-color);
  1579. }
  1580. .par_heading .heading_parblock_1_zh {
  1581. font-size: 110%;
  1582. font-weight: 700;
  1583. }
  1584. .par_heading .heading_parblock_1_tw {
  1585. font-size: 110%;
  1586. font-weight: 700;
  1587. }
  1588. .par_heading .heading_parblock_1_en {
  1589. font-size: 100%;
  1590. font-weight: 700;
  1591. }
  1592. .par_heading .heading_parblock_2_pali {
  1593. font-size: 160%;
  1594. font-weight: 700;
  1595. border-bottom: 1px solid var(--border-line-color);
  1596. }
  1597. .par_heading .heading_parblock_2_zh {
  1598. font-size: 110%;
  1599. font-weight: 700;
  1600. }
  1601. .par_heading .heading_parblock_2_tw {
  1602. font-size: 110%;
  1603. font-weight: 700;
  1604. }
  1605. .par_heading .heading_parblock_2_en {
  1606. font-size: 110%;
  1607. font-weight: 700;
  1608. }
  1609. .par_heading .heading_parblock_3_pali {
  1610. font-size: 130%;
  1611. font-weight: 700;
  1612. border-bottom: 1px solid var(--border-line-color);
  1613. }
  1614. .par_heading .heading_parblock_3_zh {
  1615. font-size: 100%;
  1616. font-weight: 700;
  1617. }
  1618. .par_heading .heading_parblock_3_tw {
  1619. font-size: 100%;
  1620. font-weight: 700;
  1621. }
  1622. .par_heading .heading_parblock_3_en {
  1623. font-size: 100%;
  1624. font-weight: 700;
  1625. }
  1626. .par_heading .heading_parblock_4_pali {
  1627. font-size: 110%;
  1628. font-weight: 700;
  1629. border-bottom: 1px solid var(--border-line-color);
  1630. }
  1631. .par_heading .heading_parblock_4_zh {
  1632. font-size: 90%;
  1633. font-weight: 700;
  1634. }
  1635. .par_heading .heading_parblock_4_tw {
  1636. font-size: 90%;
  1637. font-weight: 700;
  1638. }
  1639. .par_heading .heading_parblock_4_en {
  1640. font-size: 90%;
  1641. font-weight: 700;
  1642. }
  1643. .par_heading .heading_parblock_5_pali {
  1644. font-size: 110%;
  1645. font-weight: 700;
  1646. border-bottom: 1px solid var(--border-line-color);
  1647. }
  1648. .par_heading .heading_parblock_5_zh {
  1649. font-size: 90%;
  1650. font-weight: 700;
  1651. }
  1652. .par_heading .heading_parblock_5_tw {
  1653. font-size: 90%;
  1654. font-weight: 700;
  1655. }
  1656. .par_heading .heading_parblock_5_en {
  1657. font-size: 90%;
  1658. font-weight: 700;
  1659. }
  1660. .par_heading .heading_parblock_6_pali {
  1661. font-size: 110%;
  1662. font-weight: 700;
  1663. border-bottom: 1px solid var(--border-line-color);
  1664. }
  1665. .par_heading .heading_parblock_6_zh {
  1666. font-size: 90%;
  1667. font-weight: 700;
  1668. }
  1669. .par_heading .heading_parblock_6_tw {
  1670. font-size: 90%;
  1671. font-weight: 700;
  1672. }
  1673. .par_heading .heading_parblock_6_en {
  1674. font-size: 90%;
  1675. font-weight: 700;
  1676. }
  1677. .par_heading .heading_parblock_7_pali {
  1678. font-size: 110%;
  1679. font-weight: 700;
  1680. border-bottom: 1px solid var(--border-line-color);
  1681. }
  1682. .par_heading .heading_parblock_7_zh {
  1683. font-size: 90%;
  1684. font-weight: 700;
  1685. }
  1686. .par_heading .heading_parblock_7_tw {
  1687. font-size: 90%;
  1688. font-weight: 700;
  1689. }
  1690. .par_heading .heading_parblock_7_en {
  1691. font-size: 90%;
  1692. font-weight: 700;
  1693. }
  1694. .par_heading .heading_parblock_8_pali {
  1695. font-size: 110%;
  1696. font-weight: 700;
  1697. border-bottom: 1px solid var(--border-line-color);
  1698. }
  1699. .par_heading .heading_parblock_8_zh {
  1700. font-size: 90%;
  1701. font-weight: 700;
  1702. }
  1703. .par_heading .heading_parblock_8_tw {
  1704. font-size: 90%;
  1705. font-weight: 700;
  1706. }
  1707. .par_heading .heading_parblock_8_en {
  1708. font-size: 90%;
  1709. font-weight: 700;
  1710. }
  1711. .toc_heading {
  1712. padding: 0;
  1713. }
  1714. .toc_heading_0 {
  1715. display: none;
  1716. }
  1717. .toc_heading_1 {
  1718. padding-left: 0.5em;
  1719. padding-bottom: 0.3em;
  1720. }
  1721. .toc_heading_2 {
  1722. padding-left: 1em;
  1723. padding-bottom: 0.3em;
  1724. }
  1725. .toc_heading_3 {
  1726. padding-left: 1.5em;
  1727. padding-bottom: 0.3em;
  1728. }
  1729. .toc_heading_4 {
  1730. padding-left: 2em;
  1731. padding-bottom: 0.3em;
  1732. }
  1733. .toc_heading_5 {
  1734. padding-left: 2.5em;
  1735. padding-bottom: 0.3em;
  1736. }
  1737. .toc_heading_6 {
  1738. padding-left: 3em;
  1739. padding-bottom: 0.3em;
  1740. }
  1741. .toc_heading_7 {
  1742. padding-left: 3.5em;
  1743. padding-bottom: 0.3em;
  1744. }
  1745. .toc_heading_8 {
  1746. padding-left: 4em;
  1747. padding-bottom: 0.3em;
  1748. }
  1749. .toc_item {
  1750. display: block;
  1751. }
  1752. .toc_item_0 {
  1753. display: none;
  1754. }
  1755. .toc_item_1 {
  1756. padding-left: 0.5em;
  1757. padding-bottom: 0.3em;
  1758. }
  1759. .toc_item_2 {
  1760. padding-left: 1em;
  1761. padding-bottom: 0.3em;
  1762. }
  1763. .toc_item_3 {
  1764. padding-left: 1.5em;
  1765. padding-bottom: 0.3em;
  1766. }
  1767. .toc_item_4 {
  1768. padding-left: 2em;
  1769. padding-bottom: 0.3em;
  1770. }
  1771. .toc_item_5 {
  1772. padding-left: 2.5em;
  1773. padding-bottom: 0.3em;
  1774. }
  1775. .toc_item_6 {
  1776. padding-left: 3em;
  1777. padding-bottom: 0.3em;
  1778. }
  1779. .toc_item_7 {
  1780. padding-left: 3.5em;
  1781. padding-bottom: 0.3em;
  1782. }
  1783. .toc_item_8 {
  1784. padding-left: 4em;
  1785. padding-bottom: 0.3em;
  1786. }
  1787. .edit_icon {
  1788. opacity: 0;
  1789. height: 1.2em;
  1790. width: 1.2em;
  1791. fill: var(--link-color);
  1792. -webkit-transition-duration: 0.2s;
  1793. transition-duration: 0.2s;
  1794. }
  1795. .toolbtn {
  1796. display: none;
  1797. }
  1798. #word_table_inner table {
  1799. border-collapse: collapse;
  1800. background-color: #ffffff;
  1801. width: 100%;
  1802. }
  1803. #word_table_inner td,
  1804. th {
  1805. border: 1px solid #d2d2d2;
  1806. font-size: 80%;
  1807. vertical-align: baseline;
  1808. }
  1809. #word_table_inner tr.h {
  1810. background-color: #f5f5f5;
  1811. font-weight: 500;
  1812. color: #000000;
  1813. }
  1814. #menu_button_home {
  1815. margin-right: auto;
  1816. }
  1817. .border_right {
  1818. border-right: 1px solid var(--tool-line-color);
  1819. height: 1.8em;
  1820. margin: 0 10px 0 10px;
  1821. }
  1822. #new_input_Tran1 {
  1823. display: none;
  1824. }
  1825. #new_input_Tran2 {
  1826. display: none;
  1827. }
  1828. .v_paranum {
  1829. color: #55f;
  1830. }
  1831. .v_note {
  1832. color: #51b351;
  1833. }
  1834. #id_heading_edit_level {
  1835. display: none;
  1836. }
  1837. #id_text_edit_delete {
  1838. background-color: #e6c9a4;
  1839. display: none;
  1840. }
  1841. .toc_heading td {
  1842. vertical-align: top;
  1843. }
  1844. .toc_heading_inner {
  1845. }
  1846. .code_list_dropdown {
  1847. display: flex;
  1848. align-items: center;
  1849. white-space: nowrap;
  1850. margin: 0;
  1851. }
  1852. .project_res_add_author {
  1853. display: flex;
  1854. align-items: center;
  1855. white-space: nowrap;
  1856. margin: 0;
  1857. }
  1858. .editor_project_res_info input {
  1859. width: 100%;
  1860. }
  1861. #id_dict_curr_word_inner table {
  1862. }
  1863. #id_dict_curr_word_inner table {
  1864. border-collapse: collapse;
  1865. }
  1866. #id_dict_curr_word_inner td,
  1867. th {
  1868. border: 1px solid #000000;
  1869. font-size: 80%;
  1870. vertical-align: baseline;
  1871. }
  1872. #id_dict_curr_word_inner .h {
  1873. background-color: #9999cc;
  1874. font-weight: bold;
  1875. color: #000000;
  1876. }
  1877. /*
  1878. #id_dict_match_result table {border-collapse: collapse;}
  1879. #id_dict_match_result td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  1880. #id_dict_match_result .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  1881. */
  1882. .normal_table table {
  1883. border-collapse: collapse;
  1884. }
  1885. .normal_table td,
  1886. th {
  1887. border: 1px solid #000000;
  1888. font-size: 80%;
  1889. vertical-align: baseline;
  1890. }
  1891. .normal_table .h {
  1892. background-color: #9999cc;
  1893. font-weight: bold;
  1894. color: #000000;
  1895. }
  1896. .frame_table table {
  1897. border-collapse: collapse;
  1898. }
  1899. .frame_table td,
  1900. th {
  1901. border: 1px solid #fff;
  1902. font-size: 100%;
  1903. vertical-align: baseline;
  1904. }
  1905. #id_wizard_palicannon_index_filelist p {
  1906. margin: 0;
  1907. }
  1908. .pali_book_select .pali_book_item {
  1909. padding: 0.3em 0.6em;
  1910. line-height: 1.4em;
  1911. border-radius: 2px;
  1912. -webkit-transition-duration: 0.2s;
  1913. transition-duration: 0.2s;
  1914. cursor: pointer;
  1915. display: -webkit-box;
  1916. display: -moz-box;
  1917. display: box;
  1918. word-break: keep-all;
  1919. overflow: hidden;
  1920. white-space: nowrap;
  1921. }
  1922. .pali_book_select .pali_book_item:hover {
  1923. background-color: var(--tool-link-hover-color);
  1924. color: var(--btn-hover-color);
  1925. }
  1926. .pali_book_select {
  1927. overflow-x: hidden;
  1928. /*border-left: 1px solid var(--border-line-color);*/
  1929. max-width: 100%;
  1930. float: left;
  1931. }
  1932. .word_edit {
  1933. width: auto;
  1934. font-size: 80%;
  1935. padding: 2px 4px;
  1936. margin-bottom: 10px;
  1937. background-color: #e2f9e3;
  1938. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  1939. }
  1940. .word_edit .word_edit_head {
  1941. border-bottom: 1px solid var(--border-line-color);
  1942. margin-bottom: 0.1em;
  1943. padding-bottom: 3px;
  1944. font-weight: 400;
  1945. color: var(--main-color);
  1946. }
  1947. .word_edit input[type="input"] {
  1948. width: inherit;
  1949. }
  1950. /*2018-7-21 add by visuddhinanda*/
  1951. .res_item .tool_bar td {
  1952. border-right: 1px solid var(--tool-line-color);
  1953. }
  1954. .res_item {
  1955. border: 1px solid var(--tool-line-color);
  1956. border-radius: 5px;
  1957. width: 302px;
  1958. margin: 6px 0;
  1959. transition: all 0.4s ease;
  1960. }
  1961. .res_item .tool_bar .res_button {
  1962. margin: 0;
  1963. padding: 0;
  1964. cursor: pointer;
  1965. }
  1966. .res_item .tool_bar .res_type {
  1967. margin: 0;
  1968. padding: 0;
  1969. display: none;
  1970. }
  1971. .res_info {
  1972. border-left: 1px solid #555;
  1973. }
  1974. .res_info:hover {
  1975. border-left: 1px solid #585;
  1976. cursor: pointer;
  1977. }
  1978. .res_info_1 {
  1979. color: var(--tool-color);
  1980. padding: 2px 4px;
  1981. }
  1982. .res_info_2 {
  1983. font-size: 80%;
  1984. padding: 1px 4px;
  1985. }
  1986. .res_info_1 .book_name {
  1987. font-weight: 700;
  1988. }
  1989. #wizard_div_mybook,
  1990. #wizard_div_palicannon {
  1991. margin-top: 3.5em;
  1992. justify-content: center;
  1993. width: 80em;
  1994. }
  1995. #pc_res_loader {
  1996. /*display:none;*/
  1997. }
  1998. .res_load_progress_canvas {
  1999. background-color: #995;
  2000. }
  2001. .load_progress_canvas {
  2002. background-color: #995;
  2003. }
  2004. #loading_bar {
  2005. top: 3.5em;
  2006. left: 0;
  2007. width: 100%;
  2008. stroke-dasharray: 255%;
  2009. stroke-dashoffset: 255%;
  2010. stroke: #4688f1;
  2011. fill: none;
  2012. position: fixed;
  2013. }
  2014. @keyframes opacityGo {
  2015. 0% {
  2016. opacity: 1;
  2017. }
  2018. 100% {
  2019. opacity: 0;
  2020. }
  2021. }
  2022. #circleProcess {
  2023. width: 3em;
  2024. height: 3em;
  2025. stroke-dasharray: 255%;
  2026. stroke-dashoffset: 255%;
  2027. stroke: var(--btn-color);
  2028. fill: none;
  2029. -webkit-transform: rotate(-90deg);
  2030. -moz-transform: rotate(-90deg);
  2031. -ms-transform: rotate(-90deg);
  2032. -o-transform: rotate(-90deg);
  2033. transform: rotate(-90deg);
  2034. display: none;
  2035. position: absolute;
  2036. stroke-width: 0.2em;
  2037. }
  2038. #load_progress_num {
  2039. display: none;
  2040. }
  2041. #id_wizard_palicannon_index_filelist .case_dropdown {
  2042. display: inline-block;
  2043. background-color: #aaa;
  2044. }
  2045. #load_progress_div {
  2046. margin-right: 8px;
  2047. width: 3em;
  2048. height: 3em;
  2049. display: none;
  2050. -webkit-align-items: center;
  2051. -moz-align-items: center;
  2052. -webkit-justify-content: center;
  2053. -moz-justify-content: center;
  2054. justify-content: center;
  2055. }
  2056. .ctrl {
  2057. display: none;
  2058. }
  2059. .pali_book_select_div {
  2060. overflow: hidden;
  2061. display: inline-flex;
  2062. flex-wrap: nowrap;
  2063. justify-content: center;
  2064. align-items: center;
  2065. width: 100%;
  2066. height: 10em;
  2067. }
  2068. #wizard_palicannon_par_select_toc {
  2069. flex: 3;
  2070. padding: 0 10px;
  2071. /*border-right: 1px solid var(--border-line-color);*/
  2072. will-change: min-height;
  2073. overflow-x: hidden;
  2074. }
  2075. .wizard_palicannon_par_select_toc_inner {
  2076. position: relative;
  2077. transform: translate(0, 0);
  2078. transform: translate3d(0, 0, 0);
  2079. will-change: position, transform;
  2080. }
  2081. .wizard_par_tools {
  2082. font-size: 85%;
  2083. border-top: 1px solid var(--border-line-color);
  2084. }
  2085. .wizard_par_tools_title {
  2086. }
  2087. .pali_book_select .selected {
  2088. background-color: var(--link-color);
  2089. color: var(--btn-hover-color);
  2090. word-break: keep-all;
  2091. text-overflow: ellipsis;
  2092. overflow: hidden;
  2093. }
  2094. #id_wizard_palicannon_index_book {
  2095. font-weight: 700;
  2096. color: var(--tool-color);
  2097. }
  2098. .par_tools_show_ctl {
  2099. cursor: pointer;
  2100. }
  2101. .wizard_par_tools_body {
  2102. display: none;
  2103. }
  2104. .wizard_par_div p {
  2105. margin-top: 0.2em;
  2106. margin-bottom: 1.2em;
  2107. }
  2108. /*VRI CSS*/
  2109. .wizard_par_div .note {
  2110. color: blue;
  2111. }
  2112. .wizard_par_div .bld {
  2113. font-weight: bold;
  2114. }
  2115. .wizard_par_div .paranum {
  2116. font-weight: bold;
  2117. }
  2118. .wizard_par_div .hit {
  2119. background-color: blue;
  2120. color: white;
  2121. }
  2122. .wizard_par_div .context {
  2123. background-color: green;
  2124. color: white;
  2125. }
  2126. .wizard_par_div p {
  2127. border-top: 0in;
  2128. border-bottom: 0in;
  2129. padding-top: 0in;
  2130. padding-bottom: 0in;
  2131. margin-top: 0in;
  2132. margin-bottom: 0.5cm;
  2133. }
  2134. .wizard_par_div .indent {
  2135. font-size: 12pt;
  2136. text-indent: 2em;
  2137. margin-left: 3em;
  2138. }
  2139. .wizard_par_div .bodytext {
  2140. font-size: 12pt;
  2141. text-indent: 2em;
  2142. }
  2143. .wizard_par_div .hangnum {
  2144. font-size: 12pt;
  2145. text-indent: 2em;
  2146. }
  2147. /* Namo tassa, and nitthita -- no unique structural distinction */
  2148. .wizard_par_div .centered {
  2149. font-size: 12pt;
  2150. text-align: center;
  2151. }
  2152. .wizard_par_div .unindented {
  2153. font-size: 12pt;
  2154. }
  2155. .wizard_par_div .book {
  2156. font-size: 21pt;
  2157. text-align: center;
  2158. font-weight: bold;
  2159. }
  2160. .wizard_par_div .chapter {
  2161. font-size: 18pt;
  2162. text-align: center;
  2163. font-weight: bold;
  2164. }
  2165. .wizard_par_div .nikaya {
  2166. font-size: 24pt;
  2167. text-align: center;
  2168. font-weight: bold;
  2169. }
  2170. .wizard_par_div .title {
  2171. font-size: 12pt;
  2172. text-align: center;
  2173. font-weight: bold;
  2174. }
  2175. .wizard_par_div .subhead {
  2176. font-size: 12pt;
  2177. text-align: center;
  2178. font-weight: bold;
  2179. }
  2180. .wizard_par_div .subsubhead {
  2181. font-size: 12pt;
  2182. text-align: center;
  2183. font-weight: bold;
  2184. }
  2185. /* Gatha line 1 */
  2186. .wizard_par_div .gatha1 {
  2187. font-size: 12pt;
  2188. margin-bottom: 0em;
  2189. margin-left: 4em;
  2190. }
  2191. /* Gatha line 2 */
  2192. .wizard_par_div .gatha2 {
  2193. font-size: 12pt;
  2194. margin-bottom: 0em;
  2195. margin-left: 4em;
  2196. }
  2197. /* Gatha line 3 */
  2198. .wizard_par_div .gatha3 {
  2199. font-size: 12pt;
  2200. margin-bottom: 0em;
  2201. margin-left: 4em;
  2202. }
  2203. /* Gatha last line */
  2204. .wizard_par_div .gathalast {
  2205. font-size: 12pt;
  2206. margin-bottom: 0.5cm;
  2207. margin-left: 4em;
  2208. }
  2209. /*VRI CSS End*/
  2210. #right_tool_bar {
  2211. color: var(--btn-color);
  2212. position: fixed;
  2213. height: calc(100% - 3.5em);
  2214. top: 3.5em;
  2215. left: 100%;
  2216. width: 28vw;
  2217. background-color: var(--tool-bg-color);
  2218. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  2219. z-index: 20;
  2220. -webkit-transition-duration: 0.4s;
  2221. transition-duration: 0.4s;
  2222. -webkit-contain: strict;
  2223. contain: strict;
  2224. z-index: 51;
  2225. }
  2226. #right_tool_bar_inner {
  2227. padding: 10px;
  2228. height: calc(100% - 3px);
  2229. width: 100%;
  2230. overflow-y: auto;
  2231. }
  2232. .tooltip {
  2233. position: relative;
  2234. display: inline;
  2235. cursor: help;
  2236. }
  2237. .tooltip .tooltiptext {
  2238. visibility: hidden;
  2239. position: absolute;
  2240. width: 100px;
  2241. background-color: #555;
  2242. color: #fff;
  2243. text-align: center;
  2244. padding: 5px 0;
  2245. border-radius: 6px;
  2246. z-index: 1;
  2247. opacity: 0;
  2248. transition: opacity 0.6s;
  2249. }
  2250. .tooltip:hover {
  2251. color: red;
  2252. }
  2253. .tooltip:hover .tooltiptext {
  2254. visibility: visible;
  2255. opacity: 1;
  2256. }
  2257. .tooltip-bottom {
  2258. top: 100%;
  2259. left: 50%;
  2260. margin-left: -60px;
  2261. }
  2262. .tooltip-bottom::after {
  2263. content: "";
  2264. position: absolute;
  2265. bottom: 100%;
  2266. left: 50%;
  2267. margin-left: -5px;
  2268. border-width: 5px;
  2269. border-style: solid;
  2270. border-color: transparent transparent #555 transparent;
  2271. }
  2272. .tooltip_menu {
  2273. position: relative;
  2274. display: inline;
  2275. cursor: help;
  2276. }
  2277. .tooltip_menu .tooltiptext {
  2278. visibility: hidden;
  2279. position: absolute;
  2280. min-width: 80px;
  2281. background-color: #555;
  2282. color: #fff;
  2283. text-align: center;
  2284. padding: 2px;
  2285. border-radius: 6px;
  2286. z-index: 1;
  2287. opacity: 0;
  2288. transition: opacity 0.6s;
  2289. }
  2290. .tooltip_menu a {
  2291. padding: 3px 5px;
  2292. margin: 0;
  2293. }
  2294. .tooltip_menu a:hover {
  2295. background-color: #fff;
  2296. color: #555;
  2297. }
  2298. .tooltip_menu:hover {
  2299. color: red;
  2300. }
  2301. .tooltip_menu:hover .tooltiptext {
  2302. visibility: visible;
  2303. opacity: 1;
  2304. }
  2305. .tooltip_menu-bottom {
  2306. top: 100%;
  2307. left: 50%;
  2308. margin-left: -60px;
  2309. }
  2310. .tooltip_menu-bottom::after {
  2311. content: "";
  2312. position: absolute;
  2313. bottom: 100%;
  2314. left: 50%;
  2315. margin-left: -5px;
  2316. border-width: 5px;
  2317. border-style: solid;
  2318. border-color: transparent transparent #555 transparent;
  2319. }
  2320. #wizard_palicannon_par_select_text_head {
  2321. padding: 20px 30px;
  2322. border-radius: 8px;
  2323. /*border: 1px solid var(--border-line-color);*/
  2324. display: none;
  2325. background-color: var(--tool-bg-color);
  2326. margin: 20px 40px 40px 40px;
  2327. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2328. }
  2329. .wizard_palicannon_par_select_text_head_inner {
  2330. width: 100%;
  2331. display: inline-flex;
  2332. padding: 16px;
  2333. border-top: 1px solid var(--tool-line-color);
  2334. }
  2335. #wizard_palicannon_par_select_text_head_bookname {
  2336. padding: 1em;
  2337. font-size: 160%;
  2338. }
  2339. .chapter_info {
  2340. width: 20em;
  2341. margin-right: auto;
  2342. float: left;
  2343. }
  2344. .resouse_info {
  2345. width: 20em;
  2346. float: left;
  2347. }
  2348. #palicannon_par_res_list {
  2349. color: var(--main-color);
  2350. width: auto;
  2351. max-width: 30em;
  2352. background-color: var(--bg-color);
  2353. margin: 0;
  2354. padding: 4px 10px;
  2355. position: absolute;
  2356. border-radius: 2px;
  2357. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  2358. display: none;
  2359. z-index: 10;
  2360. transition: opacity 0.6s;
  2361. }
  2362. #palicannon_par_res_list_shell {
  2363. display: none;
  2364. }
  2365. .pc_nav_button_show_res_win {
  2366. margin: 2px 5px;
  2367. padding: 2px;
  2368. }
  2369. .icon_btn {
  2370. color: var(--btn-color);
  2371. padding: 0.3em 0.3em;
  2372. border: 1px solid var(--btn-border-color);
  2373. border-radius: 3px;
  2374. margin: 0 2px;
  2375. }
  2376. .icon_btn:hover {
  2377. padding: 0.3em 0.3em;
  2378. background-color: var(--btn-hover-bg-color);
  2379. border: 1px solid var(--btn-border-color);
  2380. border-radius: 3px;
  2381. margin: 0 2px;
  2382. }
  2383. .importbtn {
  2384. width: 28em;
  2385. height: 28em;
  2386. border-radius: 8px;
  2387. text-align: left;
  2388. justify-content: flex-start;
  2389. vertical-align: bottom;
  2390. align-items: flex-end;
  2391. flex-wrap: wrap;
  2392. padding: 3em;
  2393. background-color: #7d7d7d;
  2394. color: var(--btn-hover-color);
  2395. }
  2396. .importbtn h1,
  2397. .importbtnp p {
  2398. flex: 100%;
  2399. text-align: left;
  2400. justify-content: flex-start;
  2401. vertical-align: bottom;
  2402. align-items: flex-end;
  2403. }
  2404. .editor_wizard_caption {
  2405. flex: 100%;
  2406. text-align: left;
  2407. }
  2408. .editor_wizard_nav {
  2409. position: absolute;
  2410. right: 45px;
  2411. }
  2412. .palicannon_nav_item {
  2413. width: 10em;
  2414. text-overflow: ellipsis;
  2415. overflow: hidden;
  2416. white-space: nowrap;
  2417. }
  2418. #id_debug_output p {
  2419. margin: 1px;
  2420. padding: 1px;
  2421. font-size: 10pt;
  2422. }
  2423. .palicannon_nav_level_0 {
  2424. padding-left: 7.5em;
  2425. display: none;
  2426. }
  2427. .palicannon_nav_level_1 {
  2428. }
  2429. .palicannon_nav_level_1 {
  2430. font-weight: 700;
  2431. padding-left: 0;
  2432. }
  2433. .palicannon_nav_level_2 {
  2434. }
  2435. .palicannon_nav_level_2 {
  2436. padding-left: 1em;
  2437. }
  2438. .palicannon_nav_level_3 {
  2439. }
  2440. .palicannon_nav_level_3 {
  2441. padding-left: 2em;
  2442. }
  2443. .palicannon_nav_level_4 {
  2444. }
  2445. .palicannon_nav_level_4 {
  2446. padding-left: 3em;
  2447. }
  2448. .palicannon_nav_level_5 {
  2449. }
  2450. .palicannon_nav_level_5 {
  2451. padding-left: 4em;
  2452. }
  2453. .palicannon_nav_level_6 {
  2454. }
  2455. .palicannon_nav_level_6 {
  2456. padding-left: 5em;
  2457. }
  2458. .palicannon_nav_level_7 {
  2459. }
  2460. .palicannon_nav_level_7 {
  2461. padding-left: 6em;
  2462. }
  2463. .palicannon_nav_level_8 {
  2464. }
  2465. .palicannon_nav_level_8 {
  2466. padding-left: 7em;
  2467. }
  2468. .tree_expand_0 {
  2469. cursor: pointer;
  2470. margin: 0 3px;
  2471. }
  2472. .tree_expand_1 {
  2473. cursor: pointer;
  2474. margin: 0 3px;
  2475. }
  2476. .tree_expand_2 {
  2477. cursor: pointer;
  2478. margin: 0 3px;
  2479. }
  2480. .tree_expand_3 {
  2481. cursor: pointer;
  2482. margin: 0 3px;
  2483. }
  2484. .tree_expand_4 {
  2485. cursor: pointer;
  2486. margin: 0 3px;
  2487. }
  2488. .tree_expand_5 {
  2489. cursor: pointer;
  2490. margin: 0 3px;
  2491. }
  2492. .tree_expand_6 {
  2493. cursor: pointer;
  2494. margin: 0 3px;
  2495. }
  2496. .tree_expand_7 {
  2497. cursor: pointer;
  2498. margin: 0 3px;
  2499. }
  2500. .tree_expand_8 {
  2501. cursor: pointer;
  2502. margin: 0 3px;
  2503. }
  2504. .tree_collapse_0 {
  2505. cursor: pointer;
  2506. margin: 0 3px;
  2507. display: none;
  2508. }
  2509. .tree_collapse_1 {
  2510. cursor: pointer;
  2511. margin: 0 3px;
  2512. display: none;
  2513. }
  2514. .tree_collapse_2 {
  2515. cursor: pointer;
  2516. margin: 0 3px;
  2517. display: none;
  2518. }
  2519. .tree_collapse_3 {
  2520. cursor: pointer;
  2521. margin: 0 3px;
  2522. display: none;
  2523. }
  2524. .tree_collapse_4 {
  2525. cursor: pointer;
  2526. margin: 0 3px;
  2527. display: none;
  2528. }
  2529. .tree_collapse_5 {
  2530. cursor: pointer;
  2531. margin: 0 3px;
  2532. display: none;
  2533. }
  2534. .tree_collapse_6 {
  2535. cursor: pointer;
  2536. margin: 0 3px;
  2537. display: none;
  2538. }
  2539. .tree_collapse_7 {
  2540. cursor: pointer;
  2541. margin: 0 3px;
  2542. display: none;
  2543. }
  2544. .tree_collapse_8 {
  2545. cursor: pointer;
  2546. margin: 0 3px;
  2547. display: none;
  2548. }
  2549. .foot_div {
  2550. text-align: center;
  2551. color: #b5b5b5;
  2552. position: absolute;
  2553. width: 100%;
  2554. }
  2555. #search_div {
  2556. font-size: 120%;
  2557. padding: 30px 0;
  2558. text-align: center;
  2559. padding-right: 1.5em;
  2560. }
  2561. .mybook_l {
  2562. flex: 5;
  2563. margin-right: 20px;
  2564. }
  2565. .mybook_r {
  2566. padding: 20px;
  2567. flex: 5;
  2568. border-radius: 8px;
  2569. background-color: var(--tool-bg-color);
  2570. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2571. }
  2572. .mybook_r .common-tab {
  2573. padding: 0 20px;
  2574. margin: 0;
  2575. margin-top: 20px;
  2576. background-color: var(--tool-bg-color);
  2577. border-bottom: 1px solid var(--tool-line-color);
  2578. }
  2579. .mybook_r .common-tab_li {
  2580. padding: 0.4em 0.6em;
  2581. margin: 0;
  2582. margin-bottom: -1px;
  2583. background-color: var(--tool-bg-color);
  2584. border-bottom: 1px solid var(--tool-line-color);
  2585. }
  2586. .mybook_r .common-tab_li_act {
  2587. padding: 0.4em 0.6em;
  2588. margin-bottom: -1px;
  2589. background-color: var(--tool-bg-color);
  2590. border: 1px solid var(--tool-line-color);
  2591. border-bottom: 1px solid var(--tool-bg-color);
  2592. }
  2593. #wizard_sutta_preview {
  2594. color: var(--main-color);
  2595. height: 100%;
  2596. background-color: var(--bg-color);
  2597. padding: 2em;
  2598. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2599. }
  2600. .right_tool_btn {
  2601. position: fixed;
  2602. right: 50px;
  2603. top: 5em;
  2604. background-color: unset;
  2605. }
  2606. .right_tool_btn button {
  2607. background-color: var(--link-color);
  2608. border-color: var(--link-color);
  2609. color: var(--btn-color);
  2610. height: 3em;
  2611. width: 3em;
  2612. padding: 0;
  2613. }
  2614. .right_tool_btn button:hover {
  2615. background-color: var(--link-hover-color);
  2616. border-color: var(--link-color);
  2617. color: var(--btn-hover-color);
  2618. height: 3em;
  2619. width: 3em;
  2620. padding: 0;
  2621. }
  2622. .right_tool_btn .icon {
  2623. height: 2em;
  2624. width: 2em;
  2625. }
  2626. /*Word Map*/
  2627. .wm_word_block {
  2628. /*width:100%;*/
  2629. }
  2630. .wm_word_block table {
  2631. width: auto;
  2632. font-size: 100%;
  2633. }
  2634. .wm_word_block td {
  2635. width: auto;
  2636. font-size: 100%;
  2637. }
  2638. .wm_word_block_root_shell {
  2639. width: auto;
  2640. display: inline-block;
  2641. padding: 10px;
  2642. }
  2643. .wm_word_block_root {
  2644. width: auto;
  2645. border: 2px solid #98b304;
  2646. padding: 5px;
  2647. border-radius: 8px;
  2648. display: inline-block;
  2649. }
  2650. .wm_word_block_root .toolbar {
  2651. font-size: 80%;
  2652. border-bottom: 1px solid #bbbbbb;
  2653. display: flex;
  2654. justify-content: space-between;
  2655. margin-bottom: 8px;
  2656. }
  2657. .word_new {
  2658. border: 2px solid #828282;
  2659. }
  2660. .wm_word_block_root_h {
  2661. margin: 0 1em;
  2662. }
  2663. .wm_word_block_root_v {
  2664. }
  2665. .wordmap_line_shell {
  2666. height: 5em;
  2667. width: 2em;
  2668. }
  2669. .wordmap_line {
  2670. width: 100%;
  2671. stroke: #4688f1;
  2672. fill: none;
  2673. }
  2674. .wm_line {
  2675. height: 2em;
  2676. }
  2677. .wm_child_div {
  2678. display: inline-flex;
  2679. }
  2680. .wm_div {
  2681. width: 100%;
  2682. height: 100%;
  2683. }
  2684. #wm_title {
  2685. height: 3em;
  2686. display: flex;
  2687. padding: 5px;
  2688. justify-content: space-between;
  2689. border-bottom: 1px solid var(--tool-line-color);
  2690. }
  2691. #wm_body {
  2692. display: flex;
  2693. position: relative;
  2694. height: calc(100% - 3em);
  2695. height: -moz-calc(100% - 3em);
  2696. height: -webkit-calc(100% - 3em);
  2697. width: 100%;
  2698. overflow-y: scroll;
  2699. overflow-x: scroll;
  2700. }
  2701. #wm_body_inner {
  2702. }
  2703. .wm_root_div {
  2704. text-align: center;
  2705. }
  2706. .wm_one_mean {
  2707. margin: 2px 5px;
  2708. outline: 1px dotted;
  2709. }
  2710. .wm_one_mean:hover {
  2711. cursor: pointer;
  2712. outline: 1px solid;
  2713. }
  2714. .wm_dictname {
  2715. background-color: #999999;
  2716. }
  2717. .wm_dictname:hover {
  2718. cursor: pointer;
  2719. background-color: #bbbbbb;
  2720. }
  2721. .wm_word_block_root .type {
  2722. font-family: Times, Arial, Verdana;
  2723. font-style: italic;
  2724. font-weight: 400;
  2725. font-size: 95%;
  2726. }
  2727. /*End of Word-Map*/
  2728. /**/
  2729. .pop_win_full {
  2730. /*margin-top: 3.5em;*/
  2731. position: fixed;
  2732. left: 0;
  2733. top: 0;
  2734. opacity: 1;
  2735. width: 100%;
  2736. height: 100%;
  2737. background-color: rgba(0, 0, 0, 0.8);
  2738. display: none;
  2739. -webkit-align-items: center;
  2740. -moz-align-items: center;
  2741. -webkit-justify-content: center;
  2742. -moz-justify-content: center;
  2743. justify-content: center;
  2744. z-index: 21;
  2745. }
  2746. .pop_win_full #pop_win_inner {
  2747. /*background-color: var(--tool-bg-color);*/
  2748. color: var(--tool-color);
  2749. border-radius: 4px;
  2750. height: 95%;
  2751. width: 100%;
  2752. margin: 1em;
  2753. display: -webkit-flex;
  2754. display: -moz-flex;
  2755. display: flex;
  2756. }
  2757. .un_parent {
  2758. display: block;
  2759. width: 3em;
  2760. overflow: auto;
  2761. }
  2762. .comp_parent {
  2763. display: block;
  2764. }
  2765. /*new*/
  2766. .radio-button {
  2767. text-align: center;
  2768. width: auto;
  2769. height: 90%;
  2770. display: -webkit-flex;
  2771. display: -moz-flex;
  2772. display: inline;
  2773. margin: 3px 10px;
  2774. align-items: flex-end;
  2775. color: var(--main-color);
  2776. font-weight: 500;
  2777. }
  2778. .radio-button li {
  2779. color: var(--btn-color);
  2780. margin: 0;
  2781. padding: 4px 5px;
  2782. display: inline;
  2783. cursor: pointer;
  2784. border: 1px solid var(--nocolor);
  2785. }
  2786. .radio-button .li_act {
  2787. color: var(--tool-color);
  2788. margin: 0;
  2789. padding: 4px 5px;
  2790. display: inline;
  2791. cursor: pointer;
  2792. background-color: var(--btn-hover-bg-color);
  2793. border: 1px solid var(--tool-line-color);
  2794. border-radius: 4px;
  2795. }
  2796. .radio-button li:hover {
  2797. background-color: var(--btn-hover-bg-color);
  2798. border: 1px solid var(--tool-line-color);
  2799. border-radius: 4px;
  2800. }
  2801. .dict_word_list {
  2802. }
  2803. .dict_word {
  2804. display: block;
  2805. border: 1px solid var(--tool-line-color);
  2806. border-radius: 5px;
  2807. margin: 6px 0;
  2808. padding: 5px;
  2809. transition: all 0.4s ease;
  2810. }
  2811. .dict_word .word {
  2812. display: block;
  2813. }
  2814. .dict_word .dict {
  2815. font-size: 80%;
  2816. color: #a4f5df;
  2817. /*border-bottom: 1px solid var(--tool-line-color);*/
  2818. }
  2819. .dict_word .mean {
  2820. font-size: 90%;
  2821. margin: 2px 0;
  2822. line-height: 130%;
  2823. font-weight: 300;
  2824. display: inline-block;
  2825. }
  2826. .dict_word hl {
  2827. background-color: #ffff7a;
  2828. color: black;
  2829. font-weight: 400;
  2830. }
  2831. #dict_ref_search_input_head {
  2832. display: flex;
  2833. justify-content: space-between;
  2834. }
  2835. #dict_ref_search_input_head .case_dropdown {
  2836. min-width: 0;
  2837. }
  2838. #dict_ref_search_input_head .button_icon {
  2839. height: 1.2em;
  2840. width: 1.2em;
  2841. fill: var(--btn-color);
  2842. }
  2843. #code_list {
  2844. background-color: #545454;
  2845. }
  2846. #input_parts a {
  2847. margin: 2pt 5pt;
  2848. text-decoration: underline;
  2849. }
  2850. .file_list_shell {
  2851. border-bottom: 1px solid var(--tool-line-color);
  2852. }
  2853. #footer_nav {
  2854. display: none;
  2855. }