123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- @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;
- }
- #main-container {
- margin-top: 25px;
- }
- #main-container .page-header {
- margin-top: 0;
- }
- #main-container .page-header h2 {
- margin: 0;
- display: inline;
- }
- #main-container .span3 {
- margin-left: 15px;
- }
- input#search-input {
- position: relative;
- padding-left: 23px;
- }
- .navbar-search:before {
- content:'';
- display: block;
- width: 14px;
- height: 14px;
- background-image: url(../img/glyphicons-halflings.png);
- background-position: -48px 0;
- position: absolute;
- top: 9px;
- left: 8px;
- z-index:99;
- opacity: 0.5;
- }
- #ffdn-header {
- font-family: ffdn;
- font-size: 24px;
- letter-spacing: 1px;
- display: inline-block;
- vertical-align: text-bottom;
- }
- #ffdn-header span {
- display: inline-block;
- }
- .brand:hover #ffdn-header {
- animation-duration: 0.6s;
- animation-name: lulz1;
- }
- @keyframes lulz1 {
- 0% {
- transform: scaleX(1);
- transform: scaleY(0.5);
- }
- 50% {
- transform: scaleX(1.5);
- }
- }
- #map {
- height: 600px;
- }
- @media (min-width: 768px) and (max-width: 979px) {
- #map {
- height: 500px;
- }
- }
- @media (max-width: 767px) {
- #map {
- height: 400px;
- }
- #main-container .span3 {
- margin: 15px 0 0;
- }
- }
- .project-choice {
- padding: 30px;
- background-color: #dddddd;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- }
- .same-height-hack {
- margin-bottom: -99999px;
- padding-bottom: 99999px;
- }
- .same-height-borderfix {
- margin-top: -15px;
- padding: 0;
- }
- .project-choice h3 {
- text-align: center;
- }
- /*
- * Forms & stuff
- */
- .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;
- }
- /**
- * Schema Spec / RST
- */
- #schema_spec {
- margin-bottom: 30px;
- }
- .rst .docinfo-name {
- text-align: left;
- padding-right: 7px;
- }
- .rst .title {
- font-size: 2.2em;
- line-height: normal;
- margin: 0;
- }
- .rst .subtitle {
- font-size: 1.5em;
- line-height: normal;
- margin: 0 0 25px 0;
- }
- .rst .section > :first-child {
- margin-top: 15px;
- }
|