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.

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