index.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. @import url("../static/css/bootstrap.min.css");
  2. *,
  3. *::before,
  4. *::after {
  5. box-sizing: border-box;
  6. }
  7. ::-moz-selection {
  8. background-color: rgba(255, 255, 128, 0.2);
  9. }
  10. ::selection {
  11. background-color: rgba(255, 255, 128, 0.2);
  12. }
  13. .mod-crontab {
  14. text-align: center;
  15. }
  16. .mod-crontab a,
  17. .mod-crontab a:visited,
  18. .mod-crontab a.active {
  19. color: #cccccc;
  20. }
  21. .mod-crontab h1,
  22. .mod-crontab .text-highlight {
  23. color: gold;
  24. font-size: 75%;
  25. margin-bottom: 10px;
  26. margin-top: 25px;
  27. }
  28. .mod-crontab .text-highlight a {
  29. color: gold;
  30. }
  31. .mod-crontab .monitoring {
  32. font-size: 75%;
  33. line-height: 1.25em;
  34. color: #a8a8a8;
  35. margin-bottom: 25px;
  36. }
  37. .mod-crontab div.select {
  38. position: relative;
  39. display: inline-block;
  40. height: 15em;
  41. }
  42. .mod-crontab div.select label {
  43. position: absolute;
  44. top: 28px;
  45. left: 25px;
  46. transform: rotate(45deg);
  47. transform-origin: left top 0;
  48. }
  49. .mod-crontab table {
  50. margin-left: auto;
  51. margin-right: auto;
  52. border-collapse: collapse;
  53. border-top: 1px solid #333333;
  54. border-bottom: 1px solid #333333;
  55. width: 100%;
  56. max-width: 400px;
  57. }
  58. .mod-crontab table th,
  59. .mod-crontab table td {
  60. border-top: 1px solid #333333;
  61. border-bottom: 1px solid #333333;
  62. }
  63. .mod-crontab table th {
  64. width: 13em;
  65. text-align: right;
  66. padding: 0.2em 1em 0.2em 0;
  67. }
  68. .mod-crontab table td {
  69. text-align: left;
  70. padding: 0.2em 0 0.2em 1em;
  71. }
  72. .mod-crontab .blurb {
  73. font-size: 75%;
  74. color: #fff !important;
  75. }
  76. .mod-crontab .blurb a {
  77. color: #fff;
  78. }
  79. #contabContentBox {
  80. min-height: 500px;
  81. }
  82. .mod-crontab div.warning {
  83. color: saddlebrown;
  84. font-size: 75%;
  85. }
  86. .mod-crontab .text-editor input {
  87. font-family: "Courier New", Courier, monospace;
  88. text-align: center;
  89. font-size: 250%;
  90. width: 100%;
  91. background-color: #333333;
  92. border: 1px solid #cccccc;
  93. border-radius: 0.6em;
  94. color: #ffffff;
  95. padding-top: 0.075rem;
  96. box-shadow: 0 0 20px #888;
  97. }
  98. .mod-crontab .text-editor {
  99. margin-bottom: 10px;
  100. }
  101. .mod-crontab .text-editor input.invalid {
  102. border: 1px solid darkred;
  103. }
  104. .mod-crontab .text-editor input.warning {
  105. border: 1px solid saddlebrown;
  106. }
  107. .mod-crontab .text-editor input:focus {
  108. outline: none;
  109. }
  110. .mod-crontab .text-editor input::-ms-clear {
  111. width: 0;
  112. height: 0;
  113. }
  114. .mod-crontab .text-editor input::-moz-selection {
  115. color: #f00;
  116. background-color: rgba(255, 255, 128, 0.2);
  117. }
  118. .mod-crontab .text-editor input::selection {
  119. color: #f00;
  120. background-color: rgba(255, 255, 128, 0.2);
  121. }
  122. .mod-crontab .clickable {
  123. text-decoration: underline;
  124. cursor: pointer;
  125. -webkit-user-select: none;
  126. -moz-user-select: none;
  127. -ms-user-select: none;
  128. user-select: none;
  129. }
  130. .mod-crontab .clickable:hover {
  131. color:#b00;
  132. }
  133. .mod-crontab .part-explanation {
  134. font-size: 75%;
  135. color: #888;
  136. height: 24em;
  137. }
  138. .mod-crontab .part-explanation div {
  139. display: inline-block;
  140. vertical-align: top;
  141. margin: 0 1em 0 0;
  142. }
  143. .mod-crontab .part-explanation .active {
  144. color: #f00;
  145. }
  146. .mod-crontab .part-explanation .invalid {
  147. background-color: darkred;
  148. color: #ff0;
  149. }
  150. .mod-crontab .part-explanation .warning {
  151. background-color: saddlebrown;
  152. }
  153. .mod-crontab .part-explanation .clickable {
  154. border-radius: 1em;
  155. padding: 0.1em 0.36em;
  156. }
  157. .mod-crontab .part-explanation .clickable:last-child {
  158. margin: 0;
  159. }
  160. .mod-crontab .human-readable {
  161. font-size: 14px;
  162. min-height: 2.2em;
  163. display: -ms-flexbox;
  164. display: flex;
  165. -ms-flex-pack: end;
  166. justify-content: flex-end;
  167. -ms-flex-line-pack: end;
  168. align-content: flex-end;
  169. -ms-flex-direction: column;
  170. flex-direction: column;
  171. margin-bottom: 0.2em;
  172. margin-top: 1.25em;
  173. }
  174. .mod-crontab .human-readable .active {
  175. color: #f00;
  176. }
  177. .mod-crontab .next-date {
  178. font-size: 75%;
  179. margin-left: 0.5em;
  180. }
  181. .mod-crontab .example {
  182. text-align: right;
  183. font-size: 75%;
  184. margin-top: -1em;
  185. margin-bottom: 3px;
  186. }
  187. .mod-crontab .monitor {
  188. border: 1px dotted #666666;
  189. border-radius: 0.2em;
  190. margin: 3em 0;
  191. padding: 0.2em 0;
  192. min-height: 10em;
  193. color: #666666;
  194. }
  195. .mod-crontab .monitor a,
  196. .mod-crontab .monitor a:visited,
  197. .mod-crontab .monitor a:active {
  198. color: #666666;
  199. }
  200. .mod-crontab .monitor .input-copy {
  201. display: -ms-flexbox;
  202. display: flex;
  203. margin: 0.5em 0;
  204. }
  205. .mod-crontab .monitor .input-copy input {
  206. -ms-flex: 1 1 auto;
  207. flex: 1 1 auto;
  208. margin: 0 0;
  209. border: none;
  210. color: inherit;
  211. font-family: inherit;
  212. font-size: inherit;
  213. padding: 0.2em 0.5em;
  214. background-color: #262626;
  215. }
  216. .mod-crontab .monitor .input-copy button {
  217. -ms-flex: 0 1 auto;
  218. flex: 0 1 auto;
  219. line-height: 0;
  220. margin: 0;
  221. font-family: inherit;
  222. font-size: inherit;
  223. background-color: #333333;
  224. border-color: #666666;
  225. border-width: 1px;
  226. }
  227. .mod-crontab .monitor .input-copy .copy {
  228. fill: #666666;
  229. color: inherit;
  230. }
  231. .mod-crontab .monitor .info {
  232. font-size: 75%;
  233. margin-top: 2em;
  234. }