design.css 7.7 KB

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