theme.css 12 KB

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