Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

359 lines
4.7 KiB

  1. body {
  2. background-color: #E8ECF0;
  3. color: #556A7F;
  4. font-family: Arial, Helvetica, sans-serif;
  5. font-size: 14px;
  6. }
  7. #container_container {
  8. display: table;
  9. table-layout: fixed;
  10. margin-left: auto;
  11. margin-right: auto;
  12. }
  13. #container {
  14. display: table-cell;
  15. min-width: 200px;
  16. }
  17. #header a {
  18. text-decoration: none;
  19. color: #556A7F;
  20. }
  21. #navigation {
  22. margin-top: 4px;
  23. }
  24. #navigation a {
  25. text-decoration: none;
  26. border-bottom: 1px dotted #556A7F;
  27. color: #556A7F;
  28. }
  29. #navigation a:hover {
  30. background-color: #C7D1EB;
  31. }
  32. #main {
  33. background-color: white;
  34. padding: 6px 5px 8px 5px;
  35. -moz-box-shadow: 1px 1px 1px 1px #ccc;
  36. -webkit-box-shadow: 1px 1px 1px 1px #ccc;
  37. box-shadow: 1px 1px 1px 1px #ccc;
  38. text-align: center;
  39. }
  40. #main a {
  41. color: #556A7F;
  42. }
  43. #normal-content {
  44. word-wrap: break-word;
  45. }
  46. #normal-code {
  47. margin-top: 0;
  48. margin-bottom: 0;
  49. }
  50. .dinfo {
  51. -moz-box-shadow: 1px 1px 1px 1px #ccc;
  52. -webkit-box-shadow: 1px 1px 1px 1px #ccc;
  53. box-shadow: 1px 1px 1px 1px #ccc;
  54. margin-bottom: 15px;
  55. }
  56. #info {
  57. display: flex;
  58. flex-wrap: wrap;
  59. justify-content: space-between;
  60. background-color: white;
  61. padding: 5px 5px 5px 5px;
  62. }
  63. #info #extension,
  64. #editform #extension {
  65. width: 40px;
  66. }
  67. #info .text-right {
  68. font-size: 13px;
  69. }
  70. #info a {
  71. text-decoration: none;
  72. color: #556A7F;
  73. }
  74. #info a:hover {
  75. border-bottom: 1px dotted gray;
  76. background-color: #E8ECF0;
  77. }
  78. #info input[type=checkbox] {
  79. margin: 0;
  80. vertical-align: bottom;
  81. }
  82. #footer {
  83. color: gray;
  84. text-align: right;
  85. margin-top: 30px;
  86. margin-bottom: 10px;
  87. font-size: 11px;
  88. }
  89. #footer a {
  90. color: gray;
  91. text-decoration: none;
  92. }
  93. .normal {
  94. text-align: left;
  95. font-size: 13px;
  96. }
  97. .normal a {
  98. text-decoration: none;
  99. border-bottom: 1px dotted gray;
  100. }
  101. .normal a:hover {
  102. color: black;
  103. background-color: #E8ECF0;
  104. }
  105. .normal ul {
  106. padding-left: 15px;
  107. }
  108. .normal li {
  109. margin-bottom: 3px;
  110. list-style: none;
  111. }
  112. .normal li a {
  113. font-weight: bold;
  114. }
  115. .fixed {
  116. width: 80vw;
  117. max-width: 800px;
  118. }
  119. .paste {
  120. width: 70vw;
  121. max-width: 700px;
  122. }
  123. .needs-border {
  124. border-top: 1px solid rgb(214, 214, 214);
  125. }
  126. .left {
  127. text-align: left;
  128. }
  129. .float-left {
  130. float: left;
  131. }
  132. .pad-left {
  133. padding-left: 10px;
  134. }
  135. .pad-right {
  136. padding-right: 10px;
  137. }
  138. .text-right {
  139. text-align: right;
  140. }
  141. .center {
  142. text-align: center;
  143. }
  144. .float-right, .right {
  145. float: right;
  146. }
  147. .clear {
  148. clear: both;
  149. }
  150. #upload_header {
  151. text-align: center;
  152. font-size: 18px;
  153. }
  154. #file-uploader a {
  155. text-decoration: none;
  156. border-bottom: 1px dotted #556A7F;
  157. color: #556A7F;
  158. font-weight: bold;
  159. }
  160. #filesUploaded {
  161. display:none;
  162. text-align:left;
  163. }
  164. #linx_display_links {
  165. display:none;
  166. padding: 20px;
  167. background-color: #00AFF5;
  168. border-top: 3px solid #6bacf5;
  169. border-left: 3px solid #6bacf5;
  170. border-right: 3px solid #6bacf5;
  171. border-bottom: 3px solid #6bacf5;
  172. margin-top: 15px;
  173. margin-bottom: 10px;
  174. font-size: 12px;
  175. }
  176. #linx_display_links a,a:active,a:visited {
  177. color: white;
  178. }
  179. #supported_files {
  180. display:none;
  181. text-align:left;
  182. }
  183. #upload_btn {
  184. background-color: white;
  185. border: 2px solid #C9C9C9;
  186. width: 90px;
  187. height: 30px;
  188. }
  189. #expires {
  190. width:75px;
  191. }
  192. #choices {
  193. display: flex;
  194. align-items: center;
  195. flex-wrap: wrap;
  196. justify-content: space-between;
  197. width: 100%;
  198. margin-top: 5px;
  199. font-size:13px;
  200. }
  201. #choices label:first-child {
  202. margin-right: 15px;
  203. }
  204. #expiry {
  205. padding-top: 1px;
  206. }
  207. #randomize {
  208. vertical-align: bottom;
  209. margin: 0;
  210. }
  211. .oopscontent {
  212. width: 400px;
  213. }
  214. .oopscontent img {
  215. width: 400px;
  216. border: 0;
  217. }
  218. .error-404 img {
  219. max-width: 90vw;
  220. }
  221. .padme {
  222. padding-left: 5px;
  223. padding-right: 5px;
  224. }
  225. .editor {
  226. width: 100%;
  227. height: 450px;
  228. border: 1px solid #eaeaea;
  229. font-family: monospace;
  230. resize: none;
  231. overflow: auto;
  232. border-radius: 2px;
  233. padding: 2px;
  234. box-sizing: border-box;
  235. -webkit-box-sizing: border-box;
  236. -moz-box-sizing: border-box;
  237. }
  238. #info input[type=text] {
  239. border: 1px solid #eaeaea;
  240. color: #556A7F;
  241. border-radius: 4px 4px 4px 4px;
  242. padding-left: 4px;
  243. padding-right: 4px;
  244. height: 15px;
  245. }
  246. .storygreen {
  247. color: #789922;
  248. }
  249. .storyred {
  250. color: #800000;
  251. }
  252. /* Content display {{{ */
  253. .display-audio,
  254. .display-file {
  255. width: 100%;
  256. }
  257. .display-image {
  258. margin-bottom: -6px;
  259. max-width: 800px;
  260. }
  261. .display-pdf {
  262. width: 910px;
  263. height: 800px;
  264. }
  265. .display-video {
  266. width: 800px;
  267. }
  268. .scrollable {
  269. overflow: auto;
  270. }
  271. .storycontent {
  272. background-color: #f0e0d6 !important;
  273. }
  274. #editform,
  275. #editform .editor {
  276. display: none;
  277. width: 100%
  278. }
  279. #codeb {
  280. white-space: pre-wrap;
  281. }
  282. #inplace-editor {
  283. display: none;
  284. width: 100%;
  285. height: 800px;
  286. font-size: 13px;
  287. }
  288. /* }}} */