style.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. #main-container {
  11. margin-top: 25px;
  12. }
  13. #main-container .page-header {
  14. margin-top: 0;
  15. }
  16. #main-container .page-header h2 {
  17. margin: 0;
  18. display: inline;
  19. }
  20. #main-container .span3 {
  21. margin-left: 15px;
  22. }
  23. input#search-input {
  24. position: relative;
  25. padding-left: 23px;
  26. }
  27. .navbar-search:before {
  28. content:'';
  29. display: block;
  30. width: 14px;
  31. height: 14px;
  32. background-image: url(../img/glyphicons-halflings.png);
  33. background-position: -48px 0;
  34. position: absolute;
  35. top: 9px;
  36. left: 8px;
  37. z-index:99;
  38. opacity: 0.5;
  39. }
  40. #ffdn-header {
  41. font-family: ffdn;
  42. font-size: 24px;
  43. letter-spacing: 1px;
  44. display: inline-block;
  45. vertical-align: text-bottom;
  46. }
  47. #ffdn-header span {
  48. display: inline-block;
  49. }
  50. .brand:hover #ffdn-header {
  51. animation-duration: 0.6s;
  52. animation-name: lulz1;
  53. }
  54. @keyframes lulz1 {
  55. 0% {
  56. transform: scaleX(1);
  57. transform: scaleY(0.5);
  58. }
  59. 50% {
  60. transform: scaleX(1.5);
  61. }
  62. }
  63. #map {
  64. height: 600px;
  65. }
  66. @media (min-width: 768px) and (max-width: 979px) {
  67. #map {
  68. height: 500px;
  69. }
  70. }
  71. @media (max-width: 767px) {
  72. #map {
  73. height: 400px;
  74. }
  75. #main-container .span3 {
  76. margin: 15px 0 0;
  77. }
  78. }
  79. .project-choice {
  80. padding: 30px;
  81. background-color: #dddddd;
  82. -webkit-border-radius: 6px;
  83. -moz-border-radius: 6px;
  84. border-radius: 6px;
  85. }
  86. .same-height-hack {
  87. margin-bottom: -99999px;
  88. padding-bottom: 99999px;
  89. }
  90. .same-height-borderfix {
  91. margin-top: -15px;
  92. padding: 0;
  93. }
  94. .project-choice h3 {
  95. text-align: center;
  96. }
  97. /*
  98. * Forms & stuff
  99. */
  100. .control-group.required label:before {
  101. content: '*';
  102. color: red;
  103. padding-right: 5px;
  104. }
  105. .fieldlist, .formfield {
  106. margin: 0;
  107. padding: 0;
  108. list-style-type: none;
  109. display: inline-block;
  110. }
  111. .fieldlist li {
  112. margin: 0 0 2px 0;
  113. padding: 0;
  114. }
  115. .formfield li {
  116. display: inline;
  117. margin-right: 3px;
  118. }
  119. .formfield li .bootstrap-select {
  120. width: 190px;
  121. }
  122. .formfield li .bootstrap-select .filter-option {
  123. font-size: 0.9em !important;
  124. }
  125. .formfield li .bootstrap-select .dropdown-menu li {
  126. display: list-item;
  127. }
  128. .input-middle input:first-of-type {
  129. border-top-left-radius: 4px;
  130. border-bottom-left-radius: 4px;
  131. }
  132. .input-middle input:last-of-type {
  133. border-top-right-radius: 4px;
  134. border-bottom-right-radius: 4px;
  135. }
  136. .form-horizontal .help-block {
  137. margin-top: 0 !important;
  138. }
  139. /**
  140. * Schema Spec / RST
  141. */
  142. #schema_spec {
  143. margin-bottom: 30px;
  144. }
  145. .rst .docinfo-name {
  146. text-align: left;
  147. padding-right: 7px;
  148. }
  149. .rst .title {
  150. font-size: 2.2em;
  151. line-height: normal;
  152. margin: 0;
  153. }
  154. .rst .subtitle {
  155. font-size: 1.5em;
  156. line-height: normal;
  157. margin: 0 0 25px 0;
  158. }
  159. .rst .section > :first-child {
  160. margin-top: 15px;
  161. }