style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: lulz;
  25. }
  26. @keyframes lulz {
  27. 0% {
  28. transform: scaleX(1);
  29. transform: scaleY(0.5);
  30. }
  31. 50% {
  32. transform: scaleX(1.5);
  33. }
  34. }
  35. #map {
  36. height: 600px;
  37. }
  38. .control-group.required label:before {
  39. content: '*';
  40. color: red;
  41. padding-right: 5px;
  42. }
  43. .fieldlist, .formfield {
  44. margin: 0;
  45. padding: 0;
  46. list-style-type: none;
  47. display: inline-block;
  48. }
  49. .fieldlist li {
  50. margin: 0 0 2px 0;
  51. padding: 0;
  52. }
  53. .formfield li {
  54. display: inline;
  55. margin-right: 3px;
  56. }
  57. .formfield li .bootstrap-select {
  58. width: 190px;
  59. }
  60. .formfield li .bootstrap-select .filter-option {
  61. font-size: 0.9em !important;
  62. }
  63. .formfield li .bootstrap-select .dropdown-menu li {
  64. display: list-item;
  65. }
  66. .input-middle input:first-of-type {
  67. border-top-left-radius: 4px;
  68. border-bottom-left-radius: 4px;
  69. }
  70. .input-middle input:last-of-type {
  71. border-top-right-radius: 4px;
  72. border-bottom-right-radius: 4px;
  73. }
  74. .form-horizontal .help-block {
  75. margin-top: 0 !important;
  76. }