GeoRSS aggregator and Layar augmented reality server
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

scaffolds.css.scss 3.0 KiB

hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
hace 12 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. $blue: #00458f;
  2. body {
  3. background-color: #fff;
  4. color: #333;
  5. font-family: "Helvetica Neue", arial, helvetica, sans-serif;
  6. font-size: 62.5%;
  7. line-height: 2.5rem;
  8. width: 800px;
  9. margin: 40px auto;
  10. }
  11. p, ol, ul, td {
  12. font-size: 1.0rem;
  13. line-height: 1.4rem; }
  14. pre {
  15. background-color: #eee;
  16. padding: 10px;
  17. font-size: 1.1rem; }
  18. a {
  19. color: $blue;
  20. text-decoration: none;
  21. &:visited {
  22. color: $blue; }
  23. &:hover {
  24. color: #fff;
  25. background-color: #ccc;
  26. } }
  27. div {
  28. &.field, &.actions {
  29. margin-bottom: 30px;
  30. font-size: 1.1rem;
  31. } }
  32. #notice {
  33. background-color: green;
  34. color: white;
  35. padding: 5px 10px;
  36. font-size: 1.2rem;
  37. }
  38. #alert {
  39. background-color: red;
  40. color: white;
  41. padding: 5px 10px;
  42. font-size: 1.2rem;
  43. }
  44. .field_with_errors {
  45. padding: 2px;
  46. background-color: red;
  47. display: table; }
  48. #error_explanation {
  49. width: 450px;
  50. border: 2px solid red;
  51. padding: 7px;
  52. padding-bottom: 0;
  53. margin-bottom: 20px;
  54. background-color: #f0f0f0;
  55. h2 {
  56. text-align: left;
  57. font-weight: bold;
  58. padding: 5px 5px 5px 15px;
  59. font-size: 12px;
  60. margin: -7px;
  61. margin-bottom: 0px;
  62. background-color: #c00;
  63. color: #fff; }
  64. ul li {
  65. font-size: 12px;
  66. list-style: square; } }
  67. .button {
  68. padding: 5px 10px;
  69. background-color: #aaa;
  70. color: #fff;
  71. border-radius: 10px;
  72. font-size: 0.9rem;
  73. }
  74. a.button, a.button:visited {
  75. color: #fff;
  76. text-decoration: none;
  77. }
  78. a.button:hover {
  79. color: #fff;
  80. background-color: #ccc;
  81. padding: 5px 10px;
  82. }
  83. a.logo {
  84. float: right;
  85. margin: 0 0 0 20px;
  86. padding: 0;
  87. background-color: white;
  88. }
  89. #new_feed {
  90. background-color: beige;
  91. padding: 5px 10px;
  92. border-radius: 20px;
  93. }
  94. .feed_title a {
  95. font-size: 1.6rem;
  96. line-height: 1.95rem;
  97. }
  98. table {
  99. margin: 40px 0;
  100. border-collapse: collapse;
  101. }
  102. table#feed {
  103. margin: 70px 0 0 0;
  104. table-layout: fixed;
  105. width: 800px;
  106. }
  107. td {
  108. padding: 0 20px 30px 0;
  109. }
  110. #feed td {
  111. font-size: 1.5rem;
  112. line-height: 1.8rem;
  113. padding: 0 40px 30px 0;
  114. width: 120px;
  115. }
  116. #feed td:last-child {
  117. padding-right: 0;
  118. width: 240px;
  119. }
  120. #feed td:first-child {
  121. width: 400px;
  122. }
  123. td:last-child {
  124. padding-right: 0;
  125. }
  126. th {
  127. padding: 0 20px 10px 0;
  128. text-align: left;
  129. font-size: 0.9rem;
  130. }
  131. .right {
  132. text-align: right;
  133. }
  134. h1 {
  135. font-size: 3.0rem;
  136. font-weight: normal;
  137. line-height: 3.5rem;
  138. margin: 0 0 80px 0;
  139. text-align: left;
  140. }
  141. h1, a {
  142. margin: 0 0 80px 0;
  143. }
  144. h2 {
  145. font-size: 2.0rem;
  146. font-weight: normal;
  147. }
  148. #login input {
  149. font-size: 1.8em;
  150. padding: 10px;
  151. }
  152. #login label {
  153. font-size: 1.5em;
  154. margin: 20px 0 20px 0;
  155. }
  156. .actions input {
  157. font-size: 1.0rem;
  158. border-radius: 10px;
  159. }
  160. #userbar {
  161. margin-bottom: 40px;
  162. margin-top: 20px;
  163. font-size: 1.0rem;
  164. }
  165. #feed_feed_url {
  166. font-size: 1.2rem;
  167. width: 660px
  168. }
  169. #submit {
  170. padding: 5px 10px;
  171. color: #fff;
  172. border-radius: 10px;
  173. border: none;
  174. font-size: 0.9rem;
  175. }
  176. .pagination {
  177. font-size: 1.2rem;
  178. .current {
  179. background-color: $blue;
  180. color: white;
  181. font-style: normal;
  182. padding: 3px;
  183. }
  184. }