style.css 3.3 KB

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