style.css 2.5 KB

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