style.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. }
  39. #ffdn-header span {
  40. display: inline-block;
  41. }
  42. .brand:hover #ffdn-header {
  43. animation-duration: 0.6s;
  44. animation-name: lulz1;
  45. }
  46. @keyframes lulz1 {
  47. 0% {
  48. transform: scaleX(1);
  49. transform: scaleY(0.5);
  50. }
  51. 50% {
  52. transform: scaleX(1.5);
  53. }
  54. }
  55. /*.brand:hover #ffdn-header span:nth-child(1) {
  56. animation-duration: 0.6s;
  57. animation-name: lulz2A;
  58. }
  59. .brand:hover #ffdn-header span:nth-child(2) {
  60. animation-duration: 0.6s;
  61. animation-name: lulz2B;
  62. }
  63. .brand:hover #ffdn-header span:nth-child(3) {
  64. animation-duration: 0.6s;
  65. animation-name: lulz2C;
  66. }
  67. .brand:hover #ffdn-header span:nth-child(4) {
  68. animation-duration: 0.6s;
  69. animation-name: lulz2D;
  70. }
  71. @keyframes lulz2A {
  72. 0% {
  73. transform: scaleY(1.5);
  74. }
  75. 37% {
  76. transform: scaleX(1.0);
  77. }
  78. }
  79. @keyframes lulz2B {
  80. 25% {
  81. transform: scaleY(1.5);
  82. }
  83. 62% {
  84. transform: scaleX(1.0);
  85. }
  86. }
  87. @keyframes lulz2C {
  88. 50% {
  89. transform: scaleY(1.5);
  90. }
  91. 87% {
  92. transform: scaleX(1.0);
  93. }
  94. }
  95. @keyframes lulz2D {
  96. 75% {
  97. transform: scaleY(1.5);
  98. }
  99. 100% {
  100. transform: scaleX(1.0);
  101. }
  102. }*/
  103. #map {
  104. height: 600px;
  105. }
  106. .control-group.required label:before {
  107. content: '*';
  108. color: red;
  109. padding-right: 5px;
  110. }
  111. .fieldlist, .formfield {
  112. margin: 0;
  113. padding: 0;
  114. list-style-type: none;
  115. display: inline-block;
  116. }
  117. .fieldlist li {
  118. margin: 0 0 2px 0;
  119. padding: 0;
  120. }
  121. .formfield li {
  122. display: inline;
  123. margin-right: 3px;
  124. }
  125. .formfield li .bootstrap-select {
  126. width: 190px;
  127. }
  128. .formfield li .bootstrap-select .filter-option {
  129. font-size: 0.9em !important;
  130. }
  131. .formfield li .bootstrap-select .dropdown-menu li {
  132. display: list-item;
  133. }
  134. .input-middle input:first-of-type {
  135. border-top-left-radius: 4px;
  136. border-bottom-left-radius: 4px;
  137. }
  138. .input-middle input:last-of-type {
  139. border-top-right-radius: 4px;
  140. border-bottom-right-radius: 4px;
  141. }
  142. .form-horizontal .help-block {
  143. margin-top: 0 !important;
  144. }