style.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. /*
  2. * Fonts
  3. */
  4. @font-face {
  5. font-family: 'ffdn';
  6. src: url('../fonts/ffdn.eot');
  7. src: url('../fonts/ffdn.eot?#iefix') format('embedded-opentype'),
  8. url('../fonts/ffdn.woff') format('woff'),
  9. url('../fonts/ffdn.ttf') format('truetype');
  10. font-weight: normal;
  11. font-style: normal;
  12. }
  13. @font-face {
  14. font-family: 'Inconsolata';
  15. src: local('Inconsolata');
  16. src: url('../fonts/inconsolata.eot');
  17. src: url('../fonts/inconsolata.eot?#iefix') format('embedded-opentype'),
  18. url('../fonts/inconsolata.woff') format('woff'),
  19. url('../fonts/inconsolata.ttf') format('truetype');
  20. font-weight: normal;
  21. font-style: normal;
  22. }
  23. @font-face {
  24. font-family: 'DejaVu Sans';
  25. src: local('DejaVu Sans');
  26. src: url('../fonts/dejavusans.eot');
  27. src: url('../fonts/dejavusans.eot?#iefix') format('embedded-opentype'),
  28. url('../fonts/dejavusans.woff') format('woff'),
  29. url('../fonts/dejavusans.ttf') format('truetype');
  30. font-weight: normal;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: 'DejaVu Sans';
  35. src: local('DejaVu Sans Bold');
  36. src: url('../fonts/dejavusans-bold.eot');
  37. src: url('../fonts/dejavusans-bold.eot?#iefix') format('embedded-opentype'),
  38. url('../fonts/dejavusans-bold.woff') format('woff'),
  39. url('../fonts/dejavusans-bold.ttf') format('truetype');
  40. font-weight: bold;
  41. font-style: normal;
  42. }
  43. @font-face {
  44. font-family: 'DejaVu Sans';
  45. src: local('DejaVu Sans Oblique');
  46. src: url('../fonts/dejavusans-oblique.eot');
  47. src: url('../fonts/dejavusans-oblique.eot?#iefix') format('embedded-opentype'),
  48. url('../fonts/dejavusans-oblique.woff') format('woff'),
  49. url('../fonts/dejavusans-oblique.ttf') format('truetype');
  50. font-weight: normal;
  51. font-style: oblique;
  52. }
  53. @font-face {
  54. font-family: 'DejaVu Sans';
  55. src: local('DejaVu Sans Bold Oblique');
  56. src: url('../fonts/dejavusans-boldoblique.eot');
  57. src: url('../fonts/dejavusans-boldoblique.eot?#iefix') format('embedded-opentype'),
  58. url('../fonts/dejavusans-boldoblique.woff') format('woff'),
  59. url('../fonts/dejavusans-boldoblique.ttf') format('truetype');
  60. font-weight: bold;
  61. font-style: oblique;
  62. }
  63. /*
  64. * Global
  65. */
  66. html, body {
  67. height: 100%;
  68. font-family: 'DejaVu Sans';
  69. font-size: 13px;
  70. font-weight: normal;
  71. font-style: normal;
  72. }
  73. h1 {
  74. font-size: 34px;
  75. }
  76. h2 {
  77. font-size: 28px;
  78. }
  79. h3 {
  80. font-size: 22px;
  81. }
  82. h4 {
  83. font-size: 17px;
  84. }
  85. h5 {
  86. font-size: 14px;
  87. }
  88. h6 {
  89. font-size: 11.9px;
  90. }
  91. h1 small {
  92. font-size: 22px;
  93. }
  94. h2 small {
  95. font-size: 17px;
  96. }
  97. h3 small {
  98. font-size: 14px;
  99. }
  100. h4 small {
  101. font-size: 14px;
  102. }
  103. /*
  104. * Navbar
  105. */
  106. input#search-input {
  107. position: relative;
  108. padding-left: 23px;
  109. }
  110. .navbar-search:before {
  111. content:'';
  112. display: block;
  113. width: 14px;
  114. height: 14px;
  115. background-image: url(../img/glyphicons-halflings.png);
  116. background-position: -48px 0;
  117. position: absolute;
  118. top: 9px;
  119. left: 8px;
  120. z-index:99;
  121. opacity: 0.5;
  122. }
  123. .navbar .brand {
  124. font-weight: normal !important;
  125. padding: 10px 20px 0 20px;
  126. line-height: 22px;
  127. }
  128. #ffdn-header {
  129. font-family: ffdn;
  130. font-size: 24px;
  131. letter-spacing: 1px;
  132. display: inline-block;
  133. vertical-align: text-bottom;
  134. }
  135. #ffdn-header span {
  136. display: inline-block;
  137. }
  138. .brand:hover #ffdn-header {
  139. -webkit-animation: lulz1 0.6s;
  140. animation: lulz1 0.6s;
  141. }
  142. @keyframes lulz1 {
  143. 0% {
  144. transform: scaleX(1);
  145. transform: scaleY(0.5);
  146. }
  147. 50% {
  148. transform: scaleX(1.5);
  149. }
  150. }
  151. @-webkit-keyframes lulz1 {
  152. 0% {
  153. -webkit-transform: scaleX(1);
  154. -webkit-transform: scaleY(0.5);
  155. }
  156. 50% {
  157. -webkit-transform: scaleX(1.5);
  158. }
  159. }
  160. /*
  161. * Sticky footer
  162. */
  163. #wrap {
  164. min-height: 100%;
  165. height: auto !important;
  166. height: 100%;
  167. margin: 0 auto -80px;
  168. }
  169. #push {
  170. height: 160px;
  171. }
  172. footer {
  173. height: 64px;
  174. padding-top: 16px;
  175. background-color: #f3f3f3;
  176. font-size: 11px;
  177. }
  178. footer .bracket:before {
  179. content: '{';
  180. font-family: Inconsolata;
  181. font-size: 60px;
  182. float: left;
  183. margin: 8px 0 0 26px;
  184. color: #cccccc;
  185. transition-duration: 300ms;
  186. }
  187. footer:hover .bracket:before {
  188. color: #666666;
  189. transition-delay: 100ms;
  190. transition-duration: 300ms;
  191. }
  192. footer p {
  193. padding: 0;
  194. margin: 0;
  195. opacity: 0.4;
  196. margin-left: 60px;
  197. line-height: 16px;
  198. transition-duration: 300ms;
  199. }
  200. footer:hover p {
  201. opacity: 1;
  202. transition-delay: 100ms;
  203. transition-duration: 300ms;
  204. }
  205. @media (max-width: 767px) {
  206. #push {
  207. height: 120px;
  208. }
  209. footer {
  210. margin-left: -20px;
  211. margin-right: -20px;
  212. padding-left: 20px;
  213. padding-right: 20px;
  214. }
  215. }
  216. /*
  217. * Main
  218. */
  219. #main-container {
  220. margin-top: 25px;
  221. }
  222. #main-container .page-header {
  223. margin-top: 0;
  224. padding-bottom: 4px;
  225. }
  226. #main-container .page-header h3 {
  227. margin: 0;
  228. display: inline;
  229. }
  230. #main-container #homepage .span3 {
  231. margin-left: 15px;
  232. }
  233. #map {
  234. height: 600px;
  235. }
  236. .leaflet-popup-content {
  237. margin: 8px 10px 6px 10px;
  238. }
  239. @media (min-width: 768px) and (max-width: 979px) {
  240. #map {
  241. height: 500px;
  242. }
  243. }
  244. @media (max-width: 767px) {
  245. #map {
  246. height: 400px;
  247. }
  248. #main-container .span3 {
  249. margin: 15px 0 0;
  250. }
  251. }
  252. .project-list .btn-small {
  253. padding-right: 6px;
  254. padding-left: 6px;
  255. }
  256. .project-choice {
  257. padding: 30px;
  258. background-color: #dddddd;
  259. -webkit-border-radius: 6px;
  260. -moz-border-radius: 6px;
  261. border-radius: 6px;
  262. }
  263. .same-height-hack {
  264. margin-bottom: -99999px;
  265. padding-bottom: 99999px;
  266. }
  267. .same-height-borderfix {
  268. margin-top: -15px;
  269. padding: 0;
  270. }
  271. .project-choice h3 {
  272. text-align: center;
  273. }
  274. /*
  275. * Forms & stuff
  276. */
  277. .control-group.required label:before {
  278. content: '*';
  279. color: red;
  280. padding-right: 5px;
  281. }
  282. .fieldlist, .formfield {
  283. margin: 0;
  284. padding: 0;
  285. list-style-type: none;
  286. display: inline-block;
  287. }
  288. .fieldlist li {
  289. margin: 0 0 2px 0;
  290. padding: 0;
  291. }
  292. .formfield li {
  293. display: inline;
  294. margin-right: 3px;
  295. }
  296. .formfield li .bootstrap-select {
  297. width: 190px;
  298. }
  299. .formfield li .bootstrap-select .filter-option {
  300. font-size: 0.9em !important;
  301. }
  302. .formfield li .bootstrap-select .dropdown-menu li {
  303. display: list-item;
  304. }
  305. .input-middle input:first-of-type {
  306. border-top-left-radius: 4px;
  307. border-bottom-left-radius: 4px;
  308. }
  309. .input-middle input:last-of-type {
  310. border-top-right-radius: 4px;
  311. border-bottom-right-radius: 4px;
  312. }
  313. .form-horizontal .help-block {
  314. margin-top: 0 !important;
  315. }
  316. pre#validator {
  317. height: 500px;
  318. background-color: white;
  319. overflow-x: auto;
  320. font-family: inconsolata, monospace;
  321. font-size: 13px;
  322. background-color: #333333;
  323. color: #ffffff;
  324. }
  325. /**
  326. * Schema Spec / RST
  327. */
  328. #format_spec {
  329. margin-bottom: 30px;
  330. }
  331. .rst .docinfo-name {
  332. text-align: left;
  333. padding-right: 7px;
  334. }
  335. .rst .title {
  336. font-size: 2.2em;
  337. line-height: normal;
  338. margin: 0;
  339. }
  340. .rst .subtitle {
  341. font-size: 1.5em;
  342. line-height: normal;
  343. margin: 0 0 25px 0;
  344. }
  345. .rst .section > :first-child {
  346. margin-top: 15px;
  347. }