style.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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: 'DejaVu Sans';
  15. src: local('DejaVu Sans');
  16. src: url('../fonts/dejavusans.eot');
  17. src: url('../fonts/dejavusans.eot?#iefix') format('embedded-opentype'),
  18. url('../fonts/dejavusans.woff') format('woff'),
  19. url('../fonts/dejavusans.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 Bold');
  26. src: url('../fonts/dejavusans-bold.eot');
  27. src: url('../fonts/dejavusans-bold.eot?#iefix') format('embedded-opentype'),
  28. url('../fonts/dejavusans-bold.woff') format('woff'),
  29. url('../fonts/dejavusans-bold.ttf') format('truetype');
  30. font-weight: bold;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: 'DejaVu Sans';
  35. src: local('DejaVu Sans Oblique');
  36. src: url('../fonts/dejavusans-oblique.eot');
  37. src: url('../fonts/dejavusans-oblique.eot?#iefix') format('embedded-opentype'),
  38. url('../fonts/dejavusans-oblique.woff') format('woff'),
  39. url('../fonts/dejavusans-oblique.ttf') format('truetype');
  40. font-weight: normal;
  41. font-style: oblique;
  42. }
  43. @font-face {
  44. font-family: 'DejaVu Sans';
  45. src: local('DejaVu Sans Bold Oblique');
  46. src: url('../fonts/dejavusans-boldoblique.eot');
  47. src: url('../fonts/dejavusans-boldoblique.eot?#iefix') format('embedded-opentype'),
  48. url('../fonts/dejavusans-boldoblique.woff') format('woff'),
  49. url('../fonts/dejavusans-boldoblique.ttf') format('truetype');
  50. font-weight: bold;
  51. font-style: oblique;
  52. }
  53. /*
  54. * Global
  55. */
  56. html, body {
  57. height: 100%;
  58. font-family: 'DejaVu Sans';
  59. font-size: 13px;
  60. font-weight: normal;
  61. font-style: normal;
  62. }
  63. input, button, select, textarea {
  64. font-family: 'DejaVu Sans';
  65. }
  66. label, input, button, select, textarea, input[type="text"], input[type="password"],
  67. input[type="datetime"], input[type="datetime-local"], input[type="date"],
  68. input[type="month"], input[type="time"], input[type="week"], input[type="number"],
  69. input[type="email"], input[type="url"], input[type="search"], input[type="tel"],
  70. input[type="color"], .uneditable-input {
  71. font-size: 13px;
  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: "DejaVu Sans";
  181. font-size: 60px;
  182. float: left;
  183. margin: 11px 0 0 22px;
  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: 2px;
  225. }
  226. #main-container .page-header h2 {
  227. margin: 0;
  228. display: inline;
  229. }
  230. #main-container #homepage .span3 {
  231. margin-left: 15px;
  232. }
  233. #map {
  234. height: 600px;
  235. box-shadow: 0 0 4px #BBBBBB;
  236. }
  237. .leaflet-popup-content {
  238. margin: 8px 10px 6px 10px;
  239. }
  240. @media (min-width: 768px) and (max-width: 979px) {
  241. #map {
  242. height: 500px;
  243. }
  244. }
  245. @media (max-width: 767px) {
  246. #map {
  247. height: 400px;
  248. }
  249. #main-container .span3 {
  250. margin: 15px 0 0;
  251. }
  252. }
  253. .project-list .btn-small {
  254. padding-right: 6px;
  255. padding-left: 6px;
  256. }
  257. .project-choice {
  258. padding: 30px;
  259. background-color: #dddddd;
  260. -webkit-border-radius: 6px;
  261. -moz-border-radius: 6px;
  262. border-radius: 6px;
  263. }
  264. .same-height-hack {
  265. margin-bottom: -99999px;
  266. padding-bottom: 99999px;
  267. }
  268. .same-height-borderfix {
  269. margin-top: -15px;
  270. padding: 0;
  271. }
  272. .project-choice h3 {
  273. text-align: center;
  274. }
  275. /*
  276. * Forms & stuff
  277. */
  278. .control-group.required label:before {
  279. content: '*';
  280. color: red;
  281. padding-right: 5px;
  282. }
  283. .fieldlist, .formfield {
  284. margin: 0;
  285. padding: 0;
  286. list-style-type: none;
  287. display: inline-block;
  288. }
  289. .fieldlist li {
  290. margin: 0 0 2px 0;
  291. padding: 0;
  292. }
  293. .formfield li {
  294. display: inline;
  295. margin-right: 3px;
  296. }
  297. .formfield li .bootstrap-select {
  298. width: 190px;
  299. }
  300. .formfield li .bootstrap-select .filter-option {
  301. font-size: 0.9em !important;
  302. }
  303. .formfield li .bootstrap-select .dropdown-menu li {
  304. display: list-item;
  305. }
  306. .input-middle input:first-of-type {
  307. border-top-left-radius: 4px;
  308. border-bottom-left-radius: 4px;
  309. }
  310. .input-middle input:last-of-type {
  311. border-top-right-radius: 4px;
  312. border-bottom-right-radius: 4px;
  313. }
  314. .form-horizontal .help-block {
  315. margin-top: 0 !important;
  316. }
  317. pre#validator {
  318. height: 500px;
  319. background-color: white;
  320. overflow-x: auto;
  321. font-size: 12px;
  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. }