design.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. /*Stations*/
  2. /*hover color*/
  3. #stations tr:hover td {
  4. background-color: #efefef;
  5. }
  6. #stations .stationAction {
  7. width: 1em;
  8. height: 1em;
  9. }
  10. #stations .stationAction a{
  11. visibility:hidden;
  12. }
  13. #stations tr:hover .stationAction a{
  14. visibility:visible;
  15. }
  16. #stations {
  17. border-spacing: 0 5px;
  18. width: 100%
  19. }
  20. #stations tr td:not(:first-child){
  21. padding-left: 5px;
  22. }
  23. td {
  24. padding-right: 1em;
  25. }
  26. .wasGroup{
  27. padding-top: 1em;
  28. }
  29. .wasGroup:after {
  30. content: "";
  31. display: table;
  32. clear: both;
  33. }
  34. .wasLeft{
  35. width: 14em;
  36. float: left;
  37. }
  38. .wasRight{
  39. overflow: hidden;
  40. min-width: 20em !important;
  41. }
  42. .width100{
  43. width: 100% !important;
  44. }
  45. [is="x-ui"] input, [is="x-ui"] button, [is="x-ui"] select{
  46. -webkit-box-sizing: border-box !important;
  47. -moz-box-sizing: border-box !important;
  48. box-sizing: border-box !important;
  49. }
  50. .imageInput, .abbreviation{
  51. width: 9em !important;
  52. /*
  53. border: none !important;
  54. padding: 0em !important;
  55. */
  56. }
  57. .removeImage{
  58. font-size: 1.6em;
  59. }
  60. .removeImage a{
  61. color:var(--x-ui-light-text-color) !important;
  62. text-decoration:none !important;
  63. }
  64. .mouseOver{
  65. cursor: help;
  66. color:var(--x-ui-light-text-color) !important;
  67. text-decoration:none !important;
  68. }
  69. .mouseOver::after{
  70. content:"🛈";
  71. }
  72. .handle{
  73. cursor: grab;
  74. font-style: normal;
  75. font-size:2em;
  76. width: 1em;
  77. height: 100px;
  78. }
  79. .handle2{
  80. cursor: grab;
  81. font-style: normal;
  82. font-size:2em;
  83. width: 1em;
  84. }
  85. .handle3{
  86. cursor: grab;
  87. font-style: normal;
  88. font-size:2em;
  89. width: 1em;
  90. }
  91. .inspect{
  92. font-style: normal;
  93. font-size:2em;
  94. width: 1em;
  95. height: 100px;
  96. }
  97. .inspect a{
  98. color:var(--x-ui-light-text-color) !important;
  99. text-decoration:none !important;
  100. }
  101. #error, #replacements {
  102. background-color: #efefef;
  103. padding-bottom: 1em;
  104. }
  105. #error,#images, #replacements{
  106. margin-top: 2em;
  107. }
  108. .imageleft{
  109. height: 103px;
  110. display:table-cell;
  111. vertical-align:middle;
  112. }
  113. .list-group-item {
  114. position: relative;
  115. display: block;
  116. padding: $list-group-item-padding-y $list-group-item-padding-x;
  117. // Place the border on the list items and negative margin up for better styling
  118. margin-bottom: -$list-group-border-width;
  119. background-color: $list-group-bg;
  120. border: $list-group-border-width solid $list-group-border-color;
  121. }
  122. .patternPart:not(:last-child)::after{
  123. content: ".";
  124. padding-right: -5em;
  125. }
  126. .patternPart a{
  127. display:block;
  128. text-align: center;
  129. }
  130. .patternPart:not(:last-child) a{
  131. margin-left: -0.5em;
  132. }
  133. .patternPart{
  134. display: inline-block;
  135. white-space: nowrap;
  136. }
  137. .patternPartInput{
  138. width: auto !important;
  139. text-align: center;
  140. padding: 0.5em 0 !important;
  141. }
  142. #overlay, #overlayNotClickable {
  143. position: fixed; /* Sit on top of the page content */
  144. display: none; /* Hidden by default */
  145. width: 100%; /* Full width (cover the whole page) */
  146. height: 100%; /* Full height (cover the whole page) */
  147. top: 0;
  148. left: 0;
  149. right: 0;
  150. bottom: 0;
  151. background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  152. z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  153. text-align: center;
  154. vertical-align: middle;
  155. }
  156. #overlay {
  157. cursor: pointer; /* Add a pointer on hover */
  158. }
  159. #overlaycontentsize, #overlaycontentsizeNotClickable{
  160. position: absolute;
  161. top: 50%;
  162. left: 50%;
  163. font-size: 12px;
  164. color: black;
  165. transform: translate(-50%,-50%);
  166. -ms-transform: translate(-50%,-50%);
  167. background-color: rgba(255,255,255,1);
  168. max-height: 100%;
  169. max-width: 100%;
  170. z-index:5;
  171. overflow:hidden;
  172. border-radius: 10px;
  173. width: 80%;
  174. }
  175. #overlaycontentsizeNotClickable{
  176. width: auto;
  177. }
  178. #overlaycontentsizeNotClickable .noDeco:hover{
  179. text-decoration: none;
  180. }
  181. #overlaycontent{
  182. max-height: 100%;
  183. max-width: 100%;
  184. width: 100%;
  185. }
  186. /* Assignments */
  187. .DataImg{
  188. text-align: center;
  189. vertical-align: middle;
  190. width: 8em;
  191. height: 8em;
  192. border: 2px dashed #92b0b3;
  193. display: flex;
  194. justify-content: center;
  195. align-items: center;
  196. }
  197. .DataImg img{
  198. max-height: 100%;
  199. max-width: 100%;
  200. }
  201. #assignmentdetaillist{
  202. border-collapse:collapse;
  203. }
  204. #assignmentdetaillist td{
  205. width: 3em;
  206. text-align: center;
  207. }
  208. #assignmentdetaillist tr {background: white;}
  209. #assignmentdetaillist tr:nth-child(even) {background: #efefef;}
  210. /*Image Upload CSS*/
  211. .container
  212. {
  213. width: 100%;
  214. max-width: 680px; /* 800 */
  215. text-align: center;
  216. margin: 0 auto;
  217. }
  218. .container h1
  219. {
  220. font-size: 42px;
  221. font-weight: 300;
  222. color: #0f3c4b;
  223. margin-bottom: 40px;
  224. }
  225. .container h1 a:hover,
  226. .container h1 a:focus
  227. {
  228. color: #39bfd3;
  229. }
  230. .container nav
  231. {
  232. margin-bottom: 40px;
  233. }
  234. .container nav a
  235. {
  236. border-bottom: 2px solid #c8dadf;
  237. display: inline-block;
  238. padding: 4px 8px;
  239. margin: 0 5px;
  240. }
  241. .container nav a.is-selected
  242. {
  243. font-weight: 700;
  244. color: #39bfd3;
  245. border-bottom-color: currentColor;
  246. }
  247. .container nav a:not( .is-selected ):hover,
  248. .container nav a:not( .is-selected ):focus
  249. {
  250. border-bottom-color: #0f3c4b;
  251. }
  252. .container footer
  253. {
  254. color: #92b0b3;
  255. margin-top: 40px;
  256. }
  257. .container footer p + p
  258. {
  259. margin-top: 1em;
  260. }
  261. .container footer a:hover,
  262. .container footer a:focus
  263. {
  264. color: #39bfd3;
  265. }
  266. .box
  267. {
  268. font-size: 1.25rem; /* 20 */
  269. background-color: var(--x-ui-outside-color);
  270. position: relative;
  271. padding: 40px 20px;
  272. }
  273. .box.has-advanced-upload
  274. {
  275. outline: 2px dashed #92b0b3;
  276. outline-offset: -10px;
  277. -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  278. transition: outline-offset .15s ease-in-out, background-color .15s linear;
  279. }
  280. .box.is-dragover
  281. {
  282. outline-offset: -20px;
  283. outline-color: #c8dadf;
  284. background-color: #fff;
  285. }
  286. .box__dragndrop,
  287. .box__icon
  288. {
  289. display: none;
  290. }
  291. .box.has-advanced-upload .box__dragndrop
  292. {
  293. display: inline;
  294. }
  295. .box.has-advanced-upload .box__icon
  296. {
  297. width: 100%;
  298. height: 80px;
  299. fill: #92b0b3;
  300. display: block;
  301. margin-bottom: 40px;
  302. }
  303. .box.is-uploading .box__input,
  304. .box.is-success .box__input,
  305. .box.is-error .box__input
  306. {
  307. visibility: hidden;
  308. }
  309. .box__uploading,
  310. .box__success,
  311. .box__error
  312. {
  313. display: none;
  314. }
  315. .box.is-uploading .box__uploading,
  316. .box.is-success .box__success,
  317. .box.is-error .box__error
  318. {
  319. display: block;
  320. position: absolute;
  321. top: 50%;
  322. right: 0;
  323. left: 0;
  324. -webkit-transform: translateY( -50% );
  325. transform: translateY( -50% );
  326. }
  327. .box__uploading
  328. {
  329. font-style: italic;
  330. }
  331. .box__success
  332. {
  333. -webkit-animation: appear-from-inside .25s ease-in-out;
  334. animation: appear-from-inside .25s ease-in-out;
  335. }
  336. @-webkit-keyframes appear-from-inside
  337. {
  338. from { -webkit-transform: translateY( -50% ) scale( 0 ); }
  339. 75% { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
  340. to { -webkit-transform: translateY( -50% ) scale( 1 ); }
  341. }
  342. @keyframes appear-from-inside
  343. {
  344. from { transform: translateY( -50% ) scale( 0 ); }
  345. 75% { transform: translateY( -50% ) scale( 1.1 ); }
  346. to { transform: translateY( -50% ) scale( 1 ); }
  347. }
  348. .box__restart
  349. {
  350. font-weight: 700;
  351. }
  352. .box__restart:focus,
  353. .box__restart:hover
  354. {
  355. color: #39bfd3;
  356. }
  357. .js .box__file
  358. {
  359. width: 0.1px !important;
  360. height: 0.1px;
  361. opacity: 0;
  362. overflow: hidden;
  363. position: absolute;
  364. z-index: -1;
  365. }
  366. .box__file{
  367. width: 10.5em !important;
  368. display: block !important;
  369. }
  370. .js .box__file + label
  371. {
  372. max-width: 80% !important;
  373. text-overflow: ellipsis;
  374. white-space: nowrap;
  375. cursor: pointer;
  376. display: inline-block;
  377. overflow: hidden;
  378. }
  379. .js .box__file + label:hover strong,
  380. .box__file:focus + label strong,
  381. .box__file.has-focus + label strong
  382. {
  383. color: #39bfd3;
  384. }
  385. .js .box__file:focus + label,
  386. .js .box__file.has-focus + label
  387. {
  388. outline: 1px dotted #000;
  389. outline: -webkit-focus-ring-color auto 5px;
  390. }
  391. .js .box__file + label *
  392. {
  393. /* pointer-events: none; */ /* in case of FastClick lib use */
  394. }
  395. .no-js .box__file + label
  396. {
  397. display: none;
  398. }
  399. .no-js .box__button
  400. {
  401. display: block;
  402. }
  403. .box__button
  404. {
  405. font-weight: 700;
  406. color: #e5edf1;
  407. background-color: #39bfd3;
  408. display: none;
  409. padding: 8px 16px;
  410. margin: 40px auto 0;
  411. }
  412. .box__button:hover,
  413. .box__button:focus
  414. {
  415. background-color: #0f3c4b;
  416. }