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.

360 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. background-color: white;
  58. padding: 5px;
  59. }
  60. .info-flex {
  61. display: flex;
  62. flex-wrap: wrap;
  63. align-items: baseline;
  64. justify-content: space-between;
  65. }
  66. .info-actions {
  67. margin-left: 15px;
  68. font-size: 13px;
  69. text-align: right;
  70. }
  71. #info #extension,
  72. #editform #extension {
  73. width: 40px;
  74. }
  75. #info a {
  76. text-decoration: none;
  77. color: #556A7F;
  78. }
  79. #info a:hover {
  80. border-bottom: 1px dotted gray;
  81. background-color: #E8ECF0;
  82. }
  83. #info input[type=checkbox] {
  84. margin: 0;
  85. vertical-align: bottom;
  86. }
  87. #footer {
  88. color: gray;
  89. text-align: right;
  90. margin-top: 30px;
  91. margin-bottom: 10px;
  92. font-size: 11px;
  93. }
  94. #footer a {
  95. color: gray;
  96. text-decoration: none;
  97. }
  98. .normal {
  99. text-align: left;
  100. font-size: 13px;
  101. }
  102. .normal a {
  103. text-decoration: none;
  104. border-bottom: 1px dotted gray;
  105. }
  106. .normal a:hover {
  107. color: black;
  108. background-color: #E8ECF0;
  109. }
  110. .normal ul {
  111. padding-left: 15px;
  112. }
  113. .normal li {
  114. margin-bottom: 3px;
  115. list-style: none;
  116. }
  117. .normal li a {
  118. font-weight: bold;
  119. }
  120. .fixed {
  121. width: 80vw;
  122. max-width: 800px;
  123. }
  124. .paste {
  125. width: 70vw;
  126. max-width: 700px;
  127. }
  128. .needs-border {
  129. border-top: 1px solid rgb(214, 214, 214);
  130. }
  131. .left {
  132. text-align: left;
  133. }
  134. .float-left {
  135. float: left;
  136. }
  137. .pad-left {
  138. padding-left: 10px;
  139. }
  140. .pad-right {
  141. padding-right: 10px;
  142. }
  143. .text-right {
  144. text-align: right;
  145. }
  146. .center {
  147. text-align: center;
  148. }
  149. .float-right, .right {
  150. float: right;
  151. }
  152. .clear {
  153. clear: both;
  154. }
  155. #upload_header {
  156. text-align: center;
  157. font-size: 18px;
  158. }
  159. #file-uploader a {
  160. text-decoration: none;
  161. border-bottom: 1px dotted #556A7F;
  162. color: #556A7F;
  163. font-weight: bold;
  164. }
  165. #filesUploaded {
  166. display:none;
  167. text-align:left;
  168. }
  169. #linx_display_links {
  170. display:none;
  171. padding: 20px;
  172. background-color: #00AFF5;
  173. border-top: 3px solid #6bacf5;
  174. border-left: 3px solid #6bacf5;
  175. border-right: 3px solid #6bacf5;
  176. border-bottom: 3px solid #6bacf5;
  177. margin-top: 15px;
  178. margin-bottom: 10px;
  179. font-size: 12px;
  180. }
  181. #linx_display_links a,a:active,a:visited {
  182. color: white;
  183. }
  184. #supported_files {
  185. display:none;
  186. text-align:left;
  187. }
  188. #upload_btn {
  189. background-color: white;
  190. border: 2px solid #C9C9C9;
  191. width: 90px;
  192. height: 30px;
  193. }
  194. #expires {
  195. width:75px;
  196. }
  197. #choices {
  198. display: flex;
  199. align-items: center;
  200. flex-wrap: wrap;
  201. justify-content: space-between;
  202. width: 100%;
  203. margin-top: 5px;
  204. font-size: 13px;
  205. }
  206. #expiry {
  207. padding-top: 1px;
  208. }
  209. #randomize {
  210. vertical-align: bottom;
  211. margin: 0;
  212. }
  213. .oopscontent {
  214. width: 400px;
  215. }
  216. .oopscontent img {
  217. width: 400px;
  218. border: 0;
  219. }
  220. .error-404 img {
  221. max-width: 90vw;
  222. }
  223. .padme {
  224. padding-left: 5px;
  225. padding-right: 5px;
  226. }
  227. .editor {
  228. width: 100%;
  229. height: 450px;
  230. border: 1px solid #eaeaea;
  231. font-family: monospace;
  232. resize: none;
  233. overflow: auto;
  234. border-radius: 2px;
  235. padding: 2px;
  236. box-sizing: border-box;
  237. -webkit-box-sizing: border-box;
  238. -moz-box-sizing: border-box;
  239. }
  240. #info input[type=text] {
  241. border: 1px solid #eaeaea;
  242. color: #556A7F;
  243. padding: 2px 4px;
  244. font-family: Arial, Helvetica, sans-serif;
  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. max-height: 70vh;
  268. }
  269. .scrollable {
  270. overflow: auto;
  271. }
  272. .storycontent {
  273. background-color: #f0e0d6 !important;
  274. }
  275. #editform,
  276. #editform .editor {
  277. display: none;
  278. width: 100%
  279. }
  280. #codeb {
  281. white-space: pre-wrap;
  282. }
  283. #inplace-editor {
  284. display: none;
  285. width: 100%;
  286. height: 800px;
  287. font-size: 13px;
  288. }
  289. /* }}} */