instances.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. *:focus {
  2. outline: none;
  3. }
  4. img {
  5. max-width: 100%;
  6. }
  7. .intro, .introe {
  8. margin: 0;
  9. /* serve solo per gli schermi piccoli, definiti sotto */
  10. }
  11. .introe {
  12. margin-bottom: 20px;
  13. }
  14. .statd {
  15. color: magenta;
  16. }
  17. .ihead {
  18. width: 100%;
  19. max-width: 100%;
  20. text-align: center;
  21. font-size: 14pt;
  22. font-weight: bold;
  23. background-color: black;/*#6f8a91;*/
  24. color: white;
  25. padding: 3px;
  26. border-radius: 5px 5px 0 0;
  27. }
  28. .ihead a {
  29. color: white;
  30. text-decoration: underline dotted;
  31. }
  32. .ihead a:hover {
  33. text-decoration: underline;
  34. }
  35. .ibody, .ibodylast {
  36. width: 100%;
  37. max-width: 100%;
  38. font-size: 11pt;
  39. line-height: 1.6;
  40. background-color: #b7bec8;
  41. color: black;
  42. border-radius: 0 0 5px 5px;
  43. padding: 5px;
  44. text-align: left;
  45. }
  46. .ibody {
  47. margin-bottom: 20pt;
  48. }
  49. .icol {
  50. display: inline-block;
  51. vertical-align: top;
  52. width: 300px;
  53. }
  54. .idesc, .inote, .istat, .noxreas {
  55. width: 100%;
  56. max-width: 100%;
  57. max-height: 205px;
  58. overflow: auto;
  59. border: 1px solid #dbdee3;
  60. border-radius: 0 3px 3px;
  61. margin: 0;
  62. margin-bottom: 1px;
  63. padding: 6px;
  64. padding-top: 2px;
  65. line-height: 1.4;
  66. word-break: normal;
  67. overflow-wrap: anywhere;
  68. }
  69. .istat {
  70. padding: 6px;
  71. }
  72. .inote {
  73. width: 360px;
  74. height: 148px;
  75. }
  76. .idesc p, .inote p, .noxreas p {
  77. margin: 0;
  78. margin-bottom: 1em;
  79. padding: 0;
  80. }
  81. .idesc .exh, .inote .exh {
  82. font-weight: bold;
  83. text-transform: uppercase;
  84. }
  85. .idesc ul, .idesc ol, .inote ul, .inote ol, .noxreas ul, .noxreas ol {
  86. margin: 0;
  87. margin-bottom: 1em;
  88. padding: 0;
  89. padding-left: 1.5em;
  90. }
  91. .idesc ol {
  92. padding: 0;
  93. list-style-position: inside;
  94. }
  95. .idesc .nobott, .inote .nobott, .idesc li, .inote li {
  96. margin-bottom: 0;
  97. }
  98. .noxreas {
  99. border-color: darkred;
  100. }
  101. .ilab, .idlab, .noxlab, .iblack, .iwarn, .igood, .ivgood, .ibad {
  102. display: inline;
  103. border-radius: 3px;
  104. background-color: #dbdee3;
  105. color: white;
  106. padding: 0 6px 0 6px;
  107. }
  108. .idlab, .noxlab {
  109. margin-top: 2px;
  110. display: inline-block;
  111. color: black;
  112. border-radius: 3px 3px 0 0;
  113. }
  114. .noxlab {
  115. color: white;
  116. background-color: darkred;
  117. }
  118. .ilab {
  119. color: black;
  120. }
  121. .iblack {
  122. background-color: black;
  123. }
  124. .iwarn {
  125. background-color: orange;
  126. }
  127. .igood {
  128. background-color: green;
  129. }
  130. .ivgood {
  131. background-color: magenta;
  132. }
  133. .ibad {
  134. background-color: darkred;
  135. }
  136. .null, .nulltip {
  137. color: #777777;
  138. }
  139. .nulltip, .tip {
  140. text-decoration: underline dotted;
  141. text-underline-offset: 3px;
  142. text-decoration-thickness: 1px;
  143. cursor: help;
  144. }
  145. .iimgc {
  146. position: relative;
  147. display: table;
  148. margin-left: auto;
  149. margin-right: auto;
  150. margin-bottom: 3px;
  151. }
  152. .ifeat {
  153. position: absolute;
  154. top: 1px;
  155. right: 1px;
  156. }
  157. .dfeat {
  158. position: absolute;
  159. top: 3px;
  160. right: 3px;
  161. background-color: magenta;
  162. color: white;
  163. border: 1px solid white;
  164. border-radius: 7px;
  165. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  166. font-size: 9pt;
  167. padding: 0 5px 2px 5px;
  168. }
  169. .unavmsg {
  170. position: absolute;
  171. bottom: 0;
  172. left: 0;
  173. color: white;
  174. background-color: #00000066;
  175. border-radius: 0 0 3px 3px;
  176. padding: 8px;
  177. font-size: 8pt;
  178. }
  179. .iimg {
  180. display: block;
  181. max-width: 100%;
  182. max-height: 340px;
  183. border-radius: 3px;
  184. }
  185. .aimg {
  186. max-width: 240px;
  187. max-height: 240px;
  188. float: right;
  189. border-radius: 3px;
  190. /*padding: 3px;
  191. border: 1px solid #dbdee3;*/
  192. margin-top: 1px;
  193. }
  194. .abox {
  195. margin-top: 3px;
  196. overflow: auto;
  197. }
  198. .alab {
  199. font-weight: bold;
  200. }
  201. .sdbox {
  202. display: table;
  203. border-spacing: 0;
  204. border: 1px solid #cccccc;
  205. margin-left: auto;
  206. margin-right: auto;
  207. margin-bottom: 20pt;
  208. background-color: transparent;
  209. border-radius: 5px;
  210. padding: 3px;
  211. }
  212. .sdtit, .sdtitb {
  213. text-align: center;
  214. font-size: 13pt;
  215. font-weight: bold;
  216. height: 32px;
  217. line-height: 32px;
  218. background-color: #bbbbbb;
  219. border-radius: 3px 3px 0 0;
  220. }
  221. .sdtitb {
  222. border-radius: 0;
  223. margin-bottom: 3px;
  224. }
  225. .sddesc {
  226. text-align: center;
  227. font-size: 11pt;
  228. font-weight: bold;
  229. margin-bottom: 3px;
  230. }
  231. .sdrow, .sdcrow, .sdlrow, .sdlcrow {
  232. display: block;
  233. font-size: 0;
  234. margin-bottom: 3px;
  235. /*border: 1px solid black;*/
  236. text-align: right;
  237. }
  238. .sdcrow, .sdlrow {
  239. text-align: center;
  240. }
  241. .sdlrow {
  242. height: 32px;
  243. }
  244. .sdlcrow {
  245. margin: 0;
  246. }
  247. .sdlabel {
  248. display: inline-block;
  249. font-size: 11pt;
  250. font-weight: bold;
  251. /*min-width: 228px;*/
  252. text-align: right;
  253. padding-right: 3px;
  254. height: 24px;
  255. line-height: 24px;
  256. vertical-align: middle;
  257. white-space: nowrap;
  258. }
  259. .sdnolabel {
  260. display: inline-block;
  261. height: 24px;
  262. line-height: 24px;
  263. /*width: 228px;*/
  264. }
  265. .sdinput {
  266. display: inline-block;
  267. width: 200px;
  268. text-align: left;
  269. vertical-align: middle;
  270. }
  271. .sselect, .sselect100, .sinput, .ssubmit, .sbutton, .litbut, .litbuta {
  272. background-color: white;
  273. border: 1px solid darkgrey;
  274. border-radius: 3px;
  275. padding: 0;
  276. padding-left: 2px;
  277. font-size: 9pt;
  278. height: 24px;
  279. width: 200px;
  280. }
  281. .sselect, .sselect100 {
  282. -webkit-appearance: none;
  283. -moz-appearance: none;
  284. appearance: none;
  285. background: white url('../imgs/seldownarr.svg') 100% no-repeat;
  286. }
  287. .sselect100 {
  288. width: 100%;
  289. }
  290. .ssubmit, .sbutton, .litbut {
  291. background-color: #dddddd;
  292. }
  293. .ssubmit:hover, .sbutton:hover, .litbut:hover {
  294. background-color: #eeeeee;
  295. }
  296. .ssubmit:active, .sbutton:active, .litbut:active {
  297. background-color: #bbbbbb;
  298. }
  299. .litbuta { background-color: #bbbbbb }
  300. .litbuta:hover { background-color: #cccccc }
  301. .litbuta:active { background-color: #aaaaaa }
  302. .ssubmit {
  303. width: 100%;
  304. height: 32px;
  305. font-size: 11pt;
  306. font-weight: bold;
  307. }
  308. .litbut, .litbuta {
  309. /*width: 32.746%;*/
  310. width: 100%;
  311. padding: 0 4px 0 4px;
  312. height: 20px;
  313. font-size: 8pt;
  314. margin: 0;
  315. }
  316. .sckbox {
  317. margin: 0;
  318. top: 1px;
  319. left: 1px;
  320. position: relative;
  321. }
  322. .dida, .dida100 {
  323. background-color: black;
  324. color: white;
  325. font-size: 10pt;
  326. padding: 0 10px 0 10px;
  327. }
  328. .dida {
  329. float: left;
  330. border-radius: 3px 3px 0 0;
  331. }
  332. .dida100 {
  333. width: 100%;
  334. border-radius: 0 0 3px 3px;
  335. text-align: center;
  336. }
  337. .cbar, .abar {
  338. width: 100%;
  339. background-color: black;
  340. border-collapse: collapse;
  341. table-layout: fixed;
  342. height: 16px;
  343. font-size: 8.5pt;
  344. line-height: 1.1;
  345. }
  346. .abar {
  347. margin-bottom: 6px;
  348. }
  349. .cbar tr {
  350. background-color: darkred;
  351. }
  352. .abar tr {
  353. background-color: lightgrey;
  354. }
  355. .cbar td, .abar td {
  356. text-align: center;
  357. height: 32px;
  358. color: white;
  359. padding: 2px;
  360. border: 1px solid black;
  361. }
  362. .abar td {
  363. color: black;
  364. }
  365. .cbarok {
  366. background-color: green;
  367. }
  368. #pnav {
  369. margin-top: 3px;
  370. margin-left: auto;
  371. margin-right: auto;
  372. border-radius: 5px;
  373. text-align: center;
  374. color: white;
  375. font-size: 4pt;
  376. padding: 0;
  377. border-spacing: 0;
  378. }
  379. #pnav td {
  380. padding: 0;
  381. }
  382. .hov {
  383. cursor: pointer;
  384. }
  385. #pagesel {
  386. -webkit-appearance: none;
  387. -moz-appearance: none;
  388. appearance: none;
  389. background-color: transparent;
  390. color: #c0d9f2;
  391. border: 1px solid #539cdd;
  392. border-radius: 5px;
  393. text-align: center;
  394. font-size: 9pt;
  395. height: 24px;
  396. padding: 0;
  397. /*padding-left: 4px;
  398. padding-right: 24px;
  399. background: white url('../imgs/seldownarr.svg') 100% no-repeat;*/
  400. }
  401. .sselect, .sselect100 {
  402. -webkit-appearance: none;
  403. -moz-appearance: none;
  404. appearance: none;
  405. background: white url('../imgs/seldownarr.svg') 100% no-repeat;
  406. }
  407. .ghost {
  408. display: block;
  409. }
  410. #bmenu {
  411. display: block;
  412. background-color: rgba(0,0,0,0.89);
  413. color: white;
  414. position: fixed;
  415. top: auto;
  416. bottom: 0;
  417. left: 0;
  418. width: 100%;
  419. height: 31px;
  420. margin: 0;
  421. padding: 0;
  422. z-index: 3;
  423. }
  424. #footmarg {
  425. height: 31px;
  426. }
  427. #mctrl {
  428. overflow: hidden;
  429. height: auto;
  430. transition: height 1s;
  431. }
  432. .helpb {
  433. position: absolute;
  434. top: 20px;
  435. right: 20px;
  436. }
  437. .helpb:hover {
  438. cursor: pointer;
  439. }
  440. .hiddiv {
  441. overflow: hidden;
  442. height: auto;
  443. transition: height 1s;
  444. }
  445. #debug {
  446. display: none;
  447. width: 100%;
  448. height: 240px;
  449. border: 1px solid #cccccc;
  450. border-radius: 5px;
  451. padding: 3px;
  452. margin-bottom: 20pt;
  453. }
  454. #debug textarea {
  455. width: 100%;
  456. height: 234px;
  457. border: 0;
  458. padding: 6px;
  459. background-color: transparent;
  460. font-size: 9pt;
  461. }
  462. #popupback {
  463. display: none;
  464. position: fixed;
  465. z-index: 4;
  466. top: 0;
  467. left: 0;
  468. width: 100%;
  469. height: 100%;
  470. background-color: #000000aa;
  471. }
  472. .dhelp {
  473. position: absolute;
  474. z-index: 5;
  475. width: 500px;
  476. background-color: white;
  477. color: black;
  478. left: 50%;
  479. top: 50%;
  480. transform: translate(-50%, -50%);
  481. padding: 20px;
  482. }
  483. .dhelp p {
  484. margin: 0;
  485. padding: 0;
  486. }
  487. .hrd {
  488. background-color: #cccccc;
  489. height: 1px;
  490. width: 100%;
  491. }
  492. .ms_leg_tab {
  493. display: table;
  494. table-layout: fixed;
  495. height: 14px;
  496. border-collapse: collapse;
  497. margin: 0.5em 0 0.5em 0;
  498. }
  499. .ms_leg_td {
  500. display: table-cell;
  501. vertical-align: middle;
  502. /*font-family: "sans";*/
  503. font-size: 11pt;
  504. line-height: 1.2em;
  505. margin: 0;
  506. padding: 0;
  507. border: 0;
  508. }
  509. .ms_cont {
  510. display: table;
  511. table-layout: fixed;
  512. padding: 0;
  513. border-collapse: collapse;
  514. width: 100%;
  515. margin: 0.5em 0 0.5em 0;
  516. }
  517. .ms_suspending, .ms_limiting, .ms_notsusporlim, .ms_unknown, .ms_suspending_u, .ms_limiting_u, .ms_notsusporlim_u, .ms_unknown_u {
  518. background-color: #008000;
  519. height: 24px;
  520. width: 24px;
  521. }
  522. .ms_limiting {
  523. background-color: #FF6600;
  524. }
  525. .ms_notsusporlim {
  526. background-color: black;
  527. }
  528. .ms_unknown {
  529. background-color: #808080;
  530. }
  531. .ms_suspending_u {
  532. background-color: #00AAD4;
  533. }
  534. .ms_limiting_u {
  535. background-color: #AB37C8;
  536. }
  537. .ms_notsusporlim_u {
  538. background-color: black;
  539. }
  540. .ms_unknown_u {
  541. background-color: #808080;
  542. }
  543. @media only screen and (max-width:540pt) {
  544. .intro, .introe {
  545. margin-left: 20px;
  546. margin-right: 20px;
  547. }
  548. .sdbox {
  549. width: 280px;
  550. }
  551. .sectcontm {
  552. margin-top: 40px;
  553. margin-bottom: 40px;
  554. padding: 5px;
  555. }
  556. .sdnolabel {
  557. display: none;
  558. }
  559. .sdlabel {
  560. display: block;
  561. width: 100%;
  562. text-align: center;
  563. height: auto;
  564. line-height: normal;
  565. vertical-align: middle;
  566. }
  567. .sdinput {
  568. display: block;
  569. width: 100%;
  570. text-align: center;
  571. height: auto;
  572. line-height: normal;
  573. vertical-align: middle;
  574. }
  575. .sselect, .sinput, .ssubmit, .sbutton, .litbut, .litbuta {
  576. width: 100%;
  577. }
  578. .litbut, .litbuta {
  579. margin: 0;
  580. /*margin-bottom: 3px;*/
  581. }
  582. .ghost {
  583. display: none;
  584. }
  585. .inote {
  586. width: 100%;
  587. height: auto;
  588. max-height: 184px;
  589. }
  590. .aimg {
  591. display: block;
  592. float: none;
  593. margin-bottom: 2px;
  594. margin-left: auto;
  595. margin-right: auto;
  596. border: 0;
  597. padding: 0;
  598. }
  599. }