theme.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. :root {
  2. --MenuEntryWidth: 100px;
  3. --HiColor: #78b1e2;
  4. }
  5. * {
  6. box-sizing: border-box;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. html {
  11. scroll-behavior: smooth;
  12. height: 100%
  13. }
  14. body {
  15. background-color: white;
  16. color: black;
  17. font-family: Arial, Helvetica, Sans-Serif, sans;
  18. font-size: 12pt;
  19. margin: 0;
  20. padding: 0;
  21. height: 100%
  22. }
  23. h1,h2,h3,h4,h5,h6 {
  24. text-align: center;
  25. }
  26. a {
  27. text-decoration: none;
  28. color: blue;
  29. }
  30. a:hover {
  31. text-decoration: underline;
  32. }
  33. ul {
  34. list-style-type: disc;
  35. padding-left: 0;
  36. margin-left: 14pt;
  37. }
  38. p {
  39. margin-bottom: 10px;
  40. }
  41. .bigtabfoot {
  42. height: 32px;
  43. background-color: red;
  44. }
  45. .bigtab {
  46. background-color: white;
  47. font-size: 10pt;
  48. margin-left: auto;
  49. margin-right: auto;
  50. /*max-width: 100%;*/
  51. margin-top: 32px;
  52. }
  53. .bigtab thead {
  54. padding: 3px;
  55. /* position: sticky;
  56. top: 32px;*/
  57. color: white;
  58. height: 30px;
  59. }
  60. .bigtab th {
  61. background-color: #916f6f;
  62. border-radius: 5px;
  63. }
  64. .bigtab .insthead {
  65. padding: 3px;
  66. color: white;
  67. height: 30px;
  68. background-color: #6f8a91;
  69. border-radius: 5px;
  70. text-align: center;
  71. vertical-align: middle;
  72. color: white;
  73. font-size: 12pt;
  74. font-weight: bold;
  75. }
  76. .bigtab .insthead a {
  77. color: #1c2224;
  78. /*text-decoration: underline;*/
  79. }
  80. .bigtab img {
  81. max-width: 100%;
  82. display: block;
  83. margin-left: auto;
  84. margin-right: auto;
  85. }
  86. /*720x1280*/
  87. .bigtab td {
  88. padding: 3px;
  89. text-align: left;
  90. vertical-align: top;
  91. word-break: break-word;
  92. width: 360px;
  93. min-width: 360px;
  94. background-color: lightgrey;
  95. border-radius: 5px;
  96. }
  97. .bigtab .btbut {
  98. font-size: 10pt;
  99. }
  100. .bigtab .tdattr {
  101. width: 110px;
  102. min-width: 110px;
  103. }
  104. .baloo, .baloored {
  105. width: 100%;
  106. margin-bottom: 3px;
  107. padding-bottom: 3px;
  108. border-bottom: 1px solid grey;
  109. }
  110. .baloored {
  111. background-color: #DE8787;
  112. padding: 3px;
  113. border-radius: 3px;
  114. }
  115. .good, .bad, .neut {
  116. padding: 1px;
  117. margin-bottom: 3px;
  118. border-radius: 3px;
  119. }
  120. .good {
  121. background-color: #87DE87;
  122. }
  123. .bad {
  124. background-color: #DE8787;
  125. }
  126. .neut {
  127. background-color: #FFCCAA;
  128. }
  129. .field, .ourfield {
  130. padding: 1px;
  131. border-radius: 3px;
  132. background-color: #FFEEAA;
  133. color: black;
  134. }
  135. .ourfield {
  136. background-color: #FFB380;
  137. }
  138. .percstatuses, .perclogins, .percregs {
  139. height: 12px;
  140. line-height: 12px;
  141. vertical-align: middle;
  142. font-size: 8pt;
  143. word-break: keep-all;
  144. overflow-x: visible;
  145. }
  146. .percstatuses {
  147. background-color: #FF8080;
  148. }
  149. .perclogins {
  150. background-color: #99FF55;
  151. }
  152. .percregs {
  153. background-color: #80B3FF;
  154. }
  155. .colsectheader, .colsectcont, .colsectcontb {
  156. width: 100%;
  157. font-size: 8pt;
  158. text-align: center;
  159. }
  160. .colsectheader {
  161. margin-top: 10px;
  162. font-weight: bold;
  163. background-color: #C8B7B7;
  164. border-radius: 3px;
  165. padding: 1px;
  166. }
  167. .colsectcont ol {
  168. text-align: left;
  169. padding-left: 0;
  170. margin-left: 12px;
  171. }
  172. .colsectcontb {
  173. margin-top: 2px;
  174. font-weight: bold;
  175. background-color: #BBBBBB;
  176. border-radius: 3px;
  177. padding: 1px;
  178. }
  179. .percbg, .percfg {
  180. margin-top: 2px;
  181. width: 100%;
  182. height: 14px;
  183. background-color: #C83737;
  184. border-radius: 3px;
  185. }
  186. .percfg {
  187. background-color: #44AA00;
  188. }
  189. #fullscreen {
  190. width: 100%;
  191. height: 100%;
  192. display: table;
  193. }
  194. #middlerow {
  195. display: table-cell;
  196. vertical-align: middle;
  197. text-align: center;
  198. }
  199. #centertit, #centerbox {
  200. font-size: 12pt;
  201. margin-right: auto;
  202. margin-left: auto;
  203. width: 320px;
  204. padding: 5px;
  205. }
  206. #centertit {
  207. font-size: 13pt;
  208. padding: 8px;
  209. background-color: #916f6f;
  210. color: white;
  211. text-shadow: 1px 1px 2px black;
  212. font-weight: bold;
  213. text-align: center;
  214. border-radius: 9px 9px 0 0;
  215. }
  216. #centerbox {
  217. background-color: lightgrey;
  218. border-radius: 0 0 9px 9px;
  219. }
  220. #logintable {
  221. width: 100%;
  222. }
  223. #logintable td {
  224. text-align: right;
  225. width: 1%;
  226. }
  227. #logintable .rtd {
  228. text-align: left;
  229. width: 99%;
  230. }
  231. #logintable .tiptd {
  232. font-size: 10pt;
  233. text-align: center;
  234. width: 100%;
  235. padding-top:10px;
  236. padding-bottom: 10px;
  237. }
  238. input {
  239. width: 100%;
  240. font-size: 11pt;
  241. padding-top: 2px;
  242. padding-bottom: 2px;
  243. }
  244. .button {
  245. font-size: 11pt;
  246. height: 36px;
  247. }
  248. #popup {
  249. z-index: 2;
  250. display: none;
  251. top: 0px;
  252. position: fixed;
  253. width: 100%;
  254. height: 100%;
  255. background-color: rgba(0,0,0,0.75);
  256. color: white;
  257. padding: 0;
  258. font-size: 9pt;
  259. }
  260. #inpopup {
  261. display: table-cell;
  262. vertical-align: middle;
  263. text-align: center;
  264. }
  265. #inpopup .waitbub {
  266. background-color: black;
  267. color: var(--HiColor);
  268. padding: 16px;
  269. border-radius: 20px;
  270. width: 160px;
  271. margin-left: auto;
  272. margin-right: auto;
  273. }
  274. #inpopup .loadsavepresbub {
  275. background-color: black;
  276. color: var(--HiColor);
  277. padding: 16px;
  278. border-radius: 20px;
  279. width: 320px;
  280. margin-left: auto;
  281. margin-right: auto;
  282. }
  283. #inpopup .loadsavepresbub input {
  284. font-size: 8pt;
  285. height: 24px;
  286. }
  287. #inpopup .loadsavepresbub #ckmsg p {
  288. color: red;
  289. margin: 0;
  290. padding: 0;
  291. margin-top: 16px;
  292. }
  293. #popupcont {
  294. position: relative;
  295. margin-left: auto;
  296. margin-right: auto;
  297. border: 1px solid gray;
  298. width: 260px;
  299. background-color: white;
  300. border-radius: 9px;
  301. color: black;
  302. padding: 5px;
  303. text-align: left;
  304. }
  305. #popupcont input {
  306. width: 100%;
  307. height: 24px;
  308. font-size: 9pt;
  309. }
  310. #popupcont p {
  311. font-size: 10pt;
  312. margin-top: 3px;
  313. margin-bottom: 5px;
  314. padding: 0;
  315. }
  316. #footer {
  317. color: white;
  318. position: fixed;
  319. height: 32px;
  320. width: 100%;
  321. bottom: 0;
  322. left: 0;
  323. background-color: rgba(0,0,0,0.85);
  324. line-height: 32px;
  325. vertical-align: middle;
  326. }
  327. .nully {
  328. font-style: italic;
  329. color: #666666;
  330. }
  331. #hmenu {
  332. font-size: 10pt;
  333. background-color: rgba(0,0,0,0.85);
  334. color: white;
  335. position: fixed;
  336. top: 0;
  337. left: 0;
  338. width: 100%;
  339. height: 32px;
  340. margin: 0;
  341. padding: 0;
  342. /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);*/
  343. /*padding-left: 32px;*/
  344. z-index: 1;
  345. /*display: none;*/
  346. }
  347. #hmenu ul {
  348. list-style-type: none;
  349. margin: 0;
  350. padding: 0;
  351. overflow: visible;
  352. }
  353. #hmenu ul li {
  354. width: var(--MenuEntryWidth);
  355. height: 32px;
  356. text-align: center;
  357. display: table-cell;
  358. vertical-align: middle;
  359. color: var(--HiColor);
  360. }
  361. #hmenu ul li:hover {
  362. background-color: rgba(255,255,255,0.10);
  363. cursor: default;
  364. }
  365. #hmenu ul li a {
  366. width: var(--MenuEntryWidth);
  367. line-height: 32px;
  368. display: block;
  369. color: var(--HiColor);
  370. }
  371. #hmenu .shref {
  372. color: black;
  373. }
  374. #hmenu .shref:hover {
  375. color: var(--HiColor);
  376. text-decoration: underline;
  377. }
  378. #hmenu .ula {
  379. position: absolute;
  380. top: 32px;
  381. background-color: rgba(0,0,0,0.85);
  382. display: none;
  383. }
  384. #hmenu .ulb {
  385. background-color: rgba(0,0,0,0.85);
  386. left: var(--MenuEntryWidth);
  387. position: relative;
  388. top: -32px;
  389. display: none;
  390. }
  391. #hmenu .ula li, #hmenu .ulb li {
  392. width: var(--MenuEntryWidth);
  393. height: 32px;
  394. display: block;
  395. float: none;
  396. text-align: center;
  397. line-height: 32px;
  398. vertical-align: middle;
  399. }
  400. #hmenu .ula li:hover, #hmenu .ulb li:hover {
  401. text-decoration: underline;
  402. }
  403. #hmenu .hil {
  404. background-color: var(--HiColor);
  405. color: black;
  406. }
  407. #hmenu .hil:hover {
  408. cursor: default;
  409. text-decoration: none;
  410. color: var(--HiColor);
  411. }
  412. #hmenu .ula li.hil:hover, #hmenu .ulb li.hil:hover {
  413. text-decoration: none;
  414. }
  415. #rightdiv {
  416. position: absolute;
  417. top: 0;
  418. right: 0;
  419. color: var(--HiColor);
  420. height: 32px;
  421. line-height: 32px;
  422. vertical-align: middle;
  423. }
  424. .rlinks {
  425. float: left;
  426. padding-left: 5px;
  427. padding-right: 5px;
  428. text-align: center;
  429. }
  430. .rlinks a {
  431. color: var(--HiColor);
  432. }
  433. .rlinks:hover {
  434. cursor: pointer;
  435. background-color: rgba(255,255,255,0.10);
  436. }
  437. .mtit {
  438. position: fixed;
  439. top: 0;
  440. left: 50%;
  441. transform: translateX(-50%);
  442. line-height: 32px;
  443. font-size: 14pt;
  444. font-weight: bold;
  445. color: var(--HiColor);
  446. }
  447. #plancia {
  448. position: fixed;
  449. left: 50%;
  450. transform: translateX(-50%);
  451. top: 32px;
  452. max-width: 100%;
  453. background-color: rgba(0,0,0,0.85);
  454. padding: 1px;
  455. border-radius: 0 0 7px 7px;
  456. font-size: 9pt;
  457. color: var(--HiColor);
  458. display: none;
  459. }
  460. #plancia .planciatab {
  461. margin-right: auto;
  462. margin-left: auto;
  463. width: 100%;
  464. }
  465. #plancia select, #plancia input, #plancia button {
  466. margin: 0;
  467. height: 24px;
  468. font-size: 8pt;
  469. }
  470. #plancia input {
  471. width: 120px;
  472. }
  473. /* questi li definisco e li applico solo per avere qualcosa su cui fare "querySelectorAll" */
  474. #plancia .openpar, #plancia .fieldsel, #plancia .condsel, #plancia .valuesel, #plancia .valueinp, #plancia .andor, #plancia .closepar, #plancia .ordfieldsel, #plancia .ascdesc, #plancia .presets { min-width: 100%; }
  475. #plancia .valuesel:disabled, #plancia .valueinp:disabled {
  476. opacity: 0.5;
  477. }
  478. #plancia .presets {
  479. max-width: 400px;
  480. }
  481. #plancia .minus, #plancia .plus, #plancia .lilbut {
  482. width: 22px;
  483. height: 22px;
  484. }
  485. #plancia .minus:hover, #plancia .plus:hover, #plancia .lilbut:hover {
  486. cursor: pointer;
  487. }
  488. #plancia .ctrlbut {
  489. font-weight: bold;
  490. width: 100%;
  491. min-width: 320px;
  492. }
  493. .edtab {
  494. background-color: white;
  495. font-size: 10pt;
  496. margin-left: auto;
  497. margin-right: auto;
  498. width: 400px;
  499. margin-top: 32px;
  500. }
  501. .edtab .insthead {
  502. padding: 3px;
  503. color: white;
  504. height: 30px;
  505. background-color: #916f6f;
  506. border-radius: 5px;
  507. text-align: center;
  508. vertical-align: middle;
  509. color: white;
  510. font-size: 12pt;
  511. font-weight: bold;
  512. }
  513. .edtab input {
  514. width: auto;
  515. font-size: 10pt;
  516. padding: 0;
  517. }
  518. .edtab .button {
  519. width: 100%;
  520. height: 50px;
  521. font-size: 10pt;
  522. }
  523. .edtab img {
  524. max-width: 100%;
  525. display: block;
  526. margin-left: auto;
  527. margin-right: auto;
  528. }
  529. /*720x1280*/
  530. .edtab td {
  531. padding: 6px;
  532. line-height: 14pt;
  533. text-align: left;
  534. vertical-align: top;
  535. /* word-break: break-word;*/
  536. background-color: lightgrey;
  537. border-radius: 5px;
  538. }
  539. .edtab .left {
  540. width: 1%;
  541. text-align: right;
  542. }
  543. .edtab .right {
  544. width: 99%;
  545. }
  546. .edtab .tarea, .edtab .mselect, .mailmsg {
  547. display: block;
  548. width: 100%;
  549. resize: none;
  550. padding: 3px;
  551. border-radius: 3px;
  552. border: 1px solid darkgrey;
  553. font-size: 9pt;
  554. }
  555. .edtab .search, .edtab .inptxt {
  556. width: 100%;
  557. padding: 3px;
  558. border-radius: 3px;
  559. border: 1px solid darkgrey;
  560. margin-bottom: 1px;
  561. font-size: 9pt;
  562. }
  563. .edtab label {
  564. font-weight: bold;
  565. }
  566. .edtab .ruler {
  567. width: 100%;
  568. height: 12px;
  569. }
  570. .edtab .tit {
  571. background-color: #6f916f;
  572. color: white;
  573. text-align: center;
  574. border-radius: 3px;
  575. margin-bottom: 6px;
  576. height: 24px;
  577. line-height: 24px;
  578. }
  579. .edtab .desc {
  580. margin-bottom: 6px;
  581. }
  582. .edtab .butdiv {
  583. width: 22px;
  584. margin-bottom: 1px;
  585. margin-left: 1px;
  586. }
  587. .edtab .move {
  588. line-height: 22px;
  589. font-size: 8pt;
  590. }
  591. .cbtab {
  592. border-spacing: 0;
  593. }
  594. .cbtab td {
  595. border-radius: 0;
  596. padding: 0;
  597. }
  598. .picktab {
  599. border-spacing: 0;
  600. width: 100%;
  601. }
  602. .picktab td {
  603. border-radius: 0;
  604. padding: 0;
  605. vertical-align: middle;
  606. text-align: center;
  607. }
  608. .imgbut:hover {
  609. cursor: pointer;
  610. }
  611. .hiframe {
  612. background-color: lightgrey;
  613. border-radius: 6px;
  614. border: 1px solid darkgrey;
  615. width: 400px;
  616. height: 200px;
  617. }
  618. .hifbody {
  619. font-size:10pt;
  620. background-color: lightgrey;
  621. }
  622. .hifbody p {
  623. margin: 5px;
  624. font-size: 10pt;
  625. }
  626. .hiftit {
  627. background-color: #6f916f;
  628. color: white;
  629. font-size: 11pt;
  630. font-weight: bold;
  631. border-radius: 6px;
  632. width: 400px;
  633. height: 24px;
  634. line-height: 24px;
  635. vertical-align: middle;
  636. margin-left: auto;
  637. margin-right: auto;
  638. margin-bottom: 6px;
  639. }
  640. .hifinp {
  641. width: 320px;
  642. font-size: 9pt;
  643. margin-bottom: 1px;
  644. }
  645. .hiflab, .hiftab, .hifdiv, #errmsg {
  646. width: 320px;
  647. margin-left: auto;
  648. margin-right: auto;
  649. }
  650. .hiflab {
  651. font-weight: bold;
  652. background-color: #6f916f;
  653. color: white;
  654. border-radius: 3px;
  655. margin-bottom: 1px;
  656. padding: 2px;
  657. }
  658. .hiftab {
  659. border-spacing: 1px;
  660. }
  661. .hifdiv {
  662. text-align: left;
  663. padding: 1px;
  664. padding-top: 0;
  665. }
  666. .hifbut {
  667. width: 100%;
  668. height: 32px;
  669. font-size: 9pt;
  670. }
  671. .hiferr {
  672. color: red;
  673. }
  674. .hifloc, .hiflocno {
  675. text-align: left;
  676. background-color: #ccffaa;
  677. border-radius: 3px;
  678. padding: 5px;
  679. margin-bottom: 5px;
  680. margin-left: 5px;
  681. margin-right: 5px;
  682. }
  683. .hifloc:hover {
  684. cursor: pointer;
  685. background-color: #b3ff80;
  686. }
  687. .hiflocno {
  688. background-color: #ffaaaa;
  689. }
  690. .hiful {
  691. margin: 0;
  692. margin-left: 5px;
  693. padding: 0;
  694. padding-left: 10px;
  695. }
  696. #wait {
  697. position: fixed;
  698. top: 0;
  699. left: 0;
  700. width: 100%;
  701. height: 100%;
  702. text-align: center;
  703. line-height: 200px;
  704. background-color: rgba(0,0,0,0.90);
  705. color: white;
  706. display: none;
  707. z-index: 1;
  708. }
  709. #errmsg {
  710. background-color: red;
  711. color: yellow;
  712. border-radius: 3px;
  713. }
  714. #pageselect {
  715. position: absolute;
  716. left: 50%;
  717. transform: translateX(-50%);
  718. margin-top: 5px;
  719. text-align: center;
  720. }
  721. #notifc {
  722. position: fixed;
  723. top: 32px;
  724. right: 0;
  725. width: 200px;
  726. height: 80%;
  727. font-size: 9pt;
  728. color: white;
  729. background-color: rgba(0,0,0,0);
  730. border-left: 3px solid rgba(0,0,0,0.85);
  731. border-bottom: 3px solid rgba(0,0,0,0.85);
  732. border-radius: 0 0 0 3px;
  733. display: none;
  734. }
  735. #notifc a {
  736. color: #ffeeaa;
  737. }
  738. #notifs {
  739. height: calc(100% - 30px);
  740. overflow-y: auto;
  741. }
  742. #notifa {
  743. height: 30px;
  744. line-height: 30px;
  745. background-color: rgba(0,0,0,0.85);
  746. text-align: center;
  747. }
  748. .notifseen, .notifunseen {
  749. border-bottom: 1px solid white;
  750. background-color: rgba(0,0,0,0.85);
  751. padding: 2px;
  752. cursor: pointer;
  753. }
  754. .notifunseen {
  755. background-color: rgba(85,0,0,0.85);
  756. }
  757. #debug {
  758. position: fixed;
  759. left: 0;
  760. top: 32px;
  761. width: 320px;
  762. height: 240px;
  763. font-size: 8pt;
  764. overflow: auto;
  765. /*display: none;*/
  766. }
  767. #debugh {
  768. font-size: 8pt;
  769. /*display: none;*/
  770. }
  771. .mailheader {
  772. font-size: 11pt;
  773. /*height: 24px;*/
  774. line-height: 24px;
  775. vertical-align: middle;
  776. width: 100%;
  777. }
  778. .mailsubj {
  779. font-size: 10pt;
  780. width: 280px;
  781. }
  782. .mailmsg {
  783. margin-top: 6px;
  784. font-size: 10.5pt;
  785. }
  786. .mailbut {
  787. font-size: 10pt;
  788. width: 100%;
  789. height: 32px;
  790. margin-top: 3px;
  791. }
  792. .message {
  793. width: 360px;
  794. margin-left: auto;
  795. margin-right: auto;
  796. padding: 10px;
  797. text-align: left;
  798. font-size: 12pt;
  799. line-height: 16pt;
  800. background-color: #ccffaa;
  801. color: black;
  802. border-radius: 6px;
  803. }
  804. .message p, ul {
  805. margin-bottom: 10px;
  806. }
  807. .edrow {
  808. display: table;
  809. border-spacing: 0;
  810. margin-bottom: 3px;
  811. }
  812. .edfieldd {
  813. display: table-cell;
  814. white-space: nowrap;
  815. padding-right: 3px;
  816. width: 1%;
  817. }
  818. .edfield {
  819. display: table-cell;
  820. width: 99%;
  821. }
  822. .eddesc {
  823. font-size: 9pt;
  824. margin-bottom: 3px;
  825. }
  826. .edtab .edinp {
  827. font-size: 9pt;
  828. width: 100%;
  829. }
  830. .ptit {
  831. text-align: center;
  832. font-weight: bold;
  833. text-wrap: balance;
  834. }
  835. @media only screen and (max-width:720px) {
  836. .bigtab td {
  837. width: 244px;
  838. min-width: 244px;
  839. }
  840. .message {
  841. width: 340px;
  842. }
  843. }