design.css 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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. .inspect{
  86. font-style: normal;
  87. font-size:2em;
  88. width: 1em;
  89. height: 100px;
  90. }
  91. .inspect a{
  92. color:var(--x-ui-light-text-color) !important;
  93. text-decoration:none !important;
  94. }
  95. #error, #replacements {
  96. background-color: #efefef;
  97. padding-bottom: 1em;
  98. }
  99. #error,#images, #replacements{
  100. margin-top: 2em;
  101. }
  102. .imageleft{
  103. height: 103px;
  104. display:table-cell;
  105. vertical-align:middle;
  106. }
  107. .list-group-item {
  108. position: relative;
  109. display: block;
  110. padding: $list-group-item-padding-y $list-group-item-padding-x;
  111. // Place the border on the list items and negative margin up for better styling
  112. margin-bottom: -$list-group-border-width;
  113. background-color: $list-group-bg;
  114. border: $list-group-border-width solid $list-group-border-color;
  115. }
  116. .patternPart:not(:last-child)::after{
  117. content: ".";
  118. padding-right: -5em;
  119. }
  120. .patternPart a{
  121. display:block;
  122. text-align: center;
  123. }
  124. .patternPart:not(:last-child) a{
  125. margin-left: -0.5em;
  126. }
  127. .patternPart{
  128. display: inline-block;
  129. white-space: nowrap;
  130. }
  131. .patternPartInput{
  132. width: auto !important;
  133. text-align: center;
  134. padding: 0.5em 0 !important;
  135. }
  136. #overlay {
  137. position: fixed; /* Sit on top of the page content */
  138. display: none; /* Hidden by default */
  139. width: 100%; /* Full width (cover the whole page) */
  140. height: 100%; /* Full height (cover the whole page) */
  141. top: 0;
  142. left: 0;
  143. right: 0;
  144. bottom: 0;
  145. background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  146. z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  147. cursor: pointer; /* Add a pointer on hover */
  148. text-align: center;
  149. vertical-align: middle;
  150. }
  151. #overlaycontentsize{
  152. position: absolute;
  153. top: 50%;
  154. left: 50%;
  155. font-size: 50px;
  156. color: white;
  157. transform: translate(-50%,-50%);
  158. -ms-transform: translate(-50%,-50%);
  159. background-color: rgba(255,255,255,1);
  160. max-height: 100%;
  161. max-width: 100%;
  162. }
  163. #overlaycontent{
  164. max-height: 100%;
  165. max-width: 100%;
  166. }
  167. /*Image Upload CSS*/
  168. .container
  169. {
  170. width: 100%;
  171. max-width: 680px; /* 800 */
  172. text-align: center;
  173. margin: 0 auto;
  174. }
  175. .container h1
  176. {
  177. font-size: 42px;
  178. font-weight: 300;
  179. color: #0f3c4b;
  180. margin-bottom: 40px;
  181. }
  182. .container h1 a:hover,
  183. .container h1 a:focus
  184. {
  185. color: #39bfd3;
  186. }
  187. .container nav
  188. {
  189. margin-bottom: 40px;
  190. }
  191. .container nav a
  192. {
  193. border-bottom: 2px solid #c8dadf;
  194. display: inline-block;
  195. padding: 4px 8px;
  196. margin: 0 5px;
  197. }
  198. .container nav a.is-selected
  199. {
  200. font-weight: 700;
  201. color: #39bfd3;
  202. border-bottom-color: currentColor;
  203. }
  204. .container nav a:not( .is-selected ):hover,
  205. .container nav a:not( .is-selected ):focus
  206. {
  207. border-bottom-color: #0f3c4b;
  208. }
  209. .container footer
  210. {
  211. color: #92b0b3;
  212. margin-top: 40px;
  213. }
  214. .container footer p + p
  215. {
  216. margin-top: 1em;
  217. }
  218. .container footer a:hover,
  219. .container footer a:focus
  220. {
  221. color: #39bfd3;
  222. }
  223. .box
  224. {
  225. font-size: 1.25rem; /* 20 */
  226. background-color: var(--x-ui-outside-color);
  227. position: relative;
  228. padding: 40px 20px;
  229. }
  230. .box.has-advanced-upload
  231. {
  232. outline: 2px dashed #92b0b3;
  233. outline-offset: -10px;
  234. -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  235. transition: outline-offset .15s ease-in-out, background-color .15s linear;
  236. }
  237. .box.is-dragover
  238. {
  239. outline-offset: -20px;
  240. outline-color: #c8dadf;
  241. background-color: #fff;
  242. }
  243. .box__dragndrop,
  244. .box__icon
  245. {
  246. display: none;
  247. }
  248. .box.has-advanced-upload .box__dragndrop
  249. {
  250. display: inline;
  251. }
  252. .box.has-advanced-upload .box__icon
  253. {
  254. width: 100%;
  255. height: 80px;
  256. fill: #92b0b3;
  257. display: block;
  258. margin-bottom: 40px;
  259. }
  260. .box.is-uploading .box__input,
  261. .box.is-success .box__input,
  262. .box.is-error .box__input
  263. {
  264. visibility: hidden;
  265. }
  266. .box__uploading,
  267. .box__success,
  268. .box__error
  269. {
  270. display: none;
  271. }
  272. .box.is-uploading .box__uploading,
  273. .box.is-success .box__success,
  274. .box.is-error .box__error
  275. {
  276. display: block;
  277. position: absolute;
  278. top: 50%;
  279. right: 0;
  280. left: 0;
  281. -webkit-transform: translateY( -50% );
  282. transform: translateY( -50% );
  283. }
  284. .box__uploading
  285. {
  286. font-style: italic;
  287. }
  288. .box__success
  289. {
  290. -webkit-animation: appear-from-inside .25s ease-in-out;
  291. animation: appear-from-inside .25s ease-in-out;
  292. }
  293. @-webkit-keyframes appear-from-inside
  294. {
  295. from { -webkit-transform: translateY( -50% ) scale( 0 ); }
  296. 75% { -webkit-transform: translateY( -50% ) scale( 1.1 ); }
  297. to { -webkit-transform: translateY( -50% ) scale( 1 ); }
  298. }
  299. @keyframes appear-from-inside
  300. {
  301. from { transform: translateY( -50% ) scale( 0 ); }
  302. 75% { transform: translateY( -50% ) scale( 1.1 ); }
  303. to { transform: translateY( -50% ) scale( 1 ); }
  304. }
  305. .box__restart
  306. {
  307. font-weight: 700;
  308. }
  309. .box__restart:focus,
  310. .box__restart:hover
  311. {
  312. color: #39bfd3;
  313. }
  314. .js .box__file
  315. {
  316. width: 0.1px !important;
  317. height: 0.1px;
  318. opacity: 0;
  319. overflow: hidden;
  320. position: absolute;
  321. z-index: -1;
  322. }
  323. .box__file{
  324. width: 10.5em !important;
  325. display: block !important;
  326. }
  327. .js .box__file + label
  328. {
  329. max-width: 80% !important;
  330. text-overflow: ellipsis;
  331. white-space: nowrap;
  332. cursor: pointer;
  333. display: inline-block;
  334. overflow: hidden;
  335. }
  336. .js .box__file + label:hover strong,
  337. .box__file:focus + label strong,
  338. .box__file.has-focus + label strong
  339. {
  340. color: #39bfd3;
  341. }
  342. .js .box__file:focus + label,
  343. .js .box__file.has-focus + label
  344. {
  345. outline: 1px dotted #000;
  346. outline: -webkit-focus-ring-color auto 5px;
  347. }
  348. .js .box__file + label *
  349. {
  350. /* pointer-events: none; */ /* in case of FastClick lib use */
  351. }
  352. .no-js .box__file + label
  353. {
  354. display: none;
  355. }
  356. .no-js .box__button
  357. {
  358. display: block;
  359. }
  360. .box__button
  361. {
  362. font-weight: 700;
  363. color: #e5edf1;
  364. background-color: #39bfd3;
  365. display: none;
  366. padding: 8px 16px;
  367. margin: 40px auto 0;
  368. }
  369. .box__button:hover,
  370. .box__button:focus
  371. {
  372. background-color: #0f3c4b;
  373. }