style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. #ffdn-header {
  11. font-family: ffdn;
  12. font-size: 24px;
  13. letter-spacing: 1px;
  14. display: inline-block;
  15. }
  16. .brand:hover #ffdn-header {
  17. animation-duration: 0.6s;
  18. animation-name: lulz;
  19. }
  20. @keyframes lulz {
  21. 0% {
  22. transform: scaleX(1);
  23. transform: scaleY(0.5);
  24. }
  25. 50% {
  26. transform: scaleX(1.5);
  27. }
  28. }
  29. .control-group.required label:before {
  30. content: '*';
  31. color: red;
  32. padding-right: 5px;
  33. }
  34. .fieldlist, .formfield {
  35. margin: 0;
  36. padding: 0;
  37. list-style-type: none;
  38. display: inline-block;
  39. }
  40. .fieldlist li {
  41. margin: 0 0 2px 0;
  42. padding: 0;
  43. }
  44. .formfield li {
  45. display: inline;
  46. margin-right: 3px;
  47. }
  48. .formfield li .bootstrap-select {
  49. width: 190px;
  50. }
  51. .formfield li .bootstrap-select .filter-option {
  52. font-size: 0.9em !important;
  53. }
  54. .formfield li .bootstrap-select .dropdown-menu li {
  55. display: list-item;
  56. }
  57. .input-middle input:first-of-type {
  58. border-top-left-radius: 4px;
  59. border-bottom-left-radius: 4px;
  60. }
  61. .input-middle input:last-of-type {
  62. border-top-right-radius: 4px;
  63. border-bottom-right-radius: 4px;
  64. }
  65. .form-horizontal .help-block {
  66. margin-top: 0 !important;
  67. }