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