style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. @font-face {
  2. font-family: 'ffdn';
  3. src: url('../fonts/ffdn.eot');
  4. src: url('../fonts/ffdn.eot?#iefix') format('embedded-opentype'),
  5. url('../fonts/ffdn.woff') format('woff'),
  6. url('../fonts/ffdn.ttf') format('truetype');
  7. font-weight: normal;
  8. font-style: normal;
  9. }
  10. #main-container {
  11. margin-top: 25px;
  12. }
  13. #main-container .page-header {
  14. margin-top: 0;
  15. }
  16. #main-container .page-header h2 {
  17. margin: 0;
  18. display: inline;
  19. }
  20. #main-container .span3 {
  21. margin-left: 15px;
  22. }
  23. input#search-input {
  24. position: relative;
  25. padding-left: 23px;
  26. }
  27. .navbar-search:before {
  28. content:'';
  29. display: block;
  30. width: 14px;
  31. height: 14px;
  32. background-image: url(../img/glyphicons-halflings.png);
  33. background-position: -48px 0;
  34. position: absolute;
  35. top: 9px;
  36. left: 8px;
  37. z-index:99;
  38. opacity: 0.5;
  39. }
  40. #ffdn-header {
  41. font-family: ffdn;
  42. font-size: 24px;
  43. letter-spacing: 1px;
  44. display: inline-block;
  45. vertical-align: text-bottom;
  46. }
  47. #ffdn-header span {
  48. display: inline-block;
  49. }
  50. .brand:hover #ffdn-header {
  51. animation-duration: 0.6s;
  52. animation-name: lulz1;
  53. }
  54. @keyframes lulz1 {
  55. 0% {
  56. transform: scaleX(1);
  57. transform: scaleY(0.5);
  58. }
  59. 50% {
  60. transform: scaleX(1.5);
  61. }
  62. }
  63. #map {
  64. height: 600px;
  65. }
  66. .leaflet-popup-content {
  67. margin: 8px 10px 6px 10px;
  68. }
  69. @media (min-width: 768px) and (max-width: 979px) {
  70. #map {
  71. height: 500px;
  72. }
  73. }
  74. @media (max-width: 767px) {
  75. #map {
  76. height: 400px;
  77. }
  78. #main-container .span3 {
  79. margin: 15px 0 0;
  80. }
  81. }
  82. .project-list .btn-small {
  83. padding-right: 6px;
  84. padding-left: 6px;
  85. }
  86. .project-choice {
  87. padding: 30px;
  88. background-color: #dddddd;
  89. -webkit-border-radius: 6px;
  90. -moz-border-radius: 6px;
  91. border-radius: 6px;
  92. }
  93. .same-height-hack {
  94. margin-bottom: -99999px;
  95. padding-bottom: 99999px;
  96. }
  97. .same-height-borderfix {
  98. margin-top: -15px;
  99. padding: 0;
  100. }
  101. .project-choice h3 {
  102. text-align: center;
  103. }
  104. /*
  105. * Forms & stuff
  106. */
  107. .control-group.required label:before {
  108. content: '*';
  109. color: red;
  110. padding-right: 5px;
  111. }
  112. .fieldlist, .formfield {
  113. margin: 0;
  114. padding: 0;
  115. list-style-type: none;
  116. display: inline-block;
  117. }
  118. .fieldlist li {
  119. margin: 0 0 2px 0;
  120. padding: 0;
  121. }
  122. .formfield li {
  123. display: inline;
  124. margin-right: 3px;
  125. }
  126. .formfield li .bootstrap-select {
  127. width: 190px;
  128. }
  129. .formfield li .bootstrap-select .filter-option {
  130. font-size: 0.9em !important;
  131. }
  132. .formfield li .bootstrap-select .dropdown-menu li {
  133. display: list-item;
  134. }
  135. .input-middle input:first-of-type {
  136. border-top-left-radius: 4px;
  137. border-bottom-left-radius: 4px;
  138. }
  139. .input-middle input:last-of-type {
  140. border-top-right-radius: 4px;
  141. border-bottom-right-radius: 4px;
  142. }
  143. .form-horizontal .help-block {
  144. margin-top: 0 !important;
  145. }
  146. /**
  147. * Schema Spec / RST
  148. */
  149. #format_spec {
  150. margin-bottom: 30px;
  151. }
  152. .rst .docinfo-name {
  153. text-align: left;
  154. padding-right: 7px;
  155. }
  156. .rst .title {
  157. font-size: 2.2em;
  158. line-height: normal;
  159. margin: 0;
  160. }
  161. .rst .subtitle {
  162. font-size: 1.5em;
  163. line-height: normal;
  164. margin: 0 0 25px 0;
  165. }
  166. .rst .section > :first-child {
  167. margin-top: 15px;
  168. }