theme.css 13 KB

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