style.css 2.5 KB

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