123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- @font-face {
- font-family: 'ffdn';
- src: url('../fonts/ffdn.eot');
- src: url('../fonts/ffdn.eot?#iefix') format('embedded-opentype'),
- url('../fonts/ffdn.woff') format('woff'),
- url('../fonts/ffdn.ttf') format('truetype');
- font-weight: normal;
- font-style: normal;
- }
- #ffdn-header {
- font-family: ffdn;
- font-size: 24px;
- letter-spacing: 1px;
- display: inline-block;
- }
- .brand:hover #ffdn-header {
- animation-duration: 0.6s;
- animation-name: lulz;
- }
- @keyframes lulz {
- 0% {
- transform: scaleX(1);
- transform: scaleY(0.5);
- }
- 50% {
- transform: scaleX(1.5);
- }
- }
- .control-group.required label:before {
- content: '*';
- color: red;
- padding-right: 5px;
- }
- .fieldlist, .formfield {
- margin: 0;
- padding: 0;
- list-style-type: none;
- display: inline-block;
- }
- .fieldlist li {
- margin: 0 0 2px 0;
- padding: 0;
- }
- .formfield li {
- display: inline;
- margin-right: 3px;
- }
- .formfield li .bootstrap-select {
- width: 190px;
- }
- .formfield li .bootstrap-select .filter-option {
- font-size: 0.9em !important;
- }
- .formfield li .bootstrap-select .dropdown-menu li {
- display: list-item;
- }
- .input-middle input:first-of-type {
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- .input-middle input:last-of-type {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .form-horizontal .help-block {
- margin-top: 0 !important;
- }
|