basic.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. body {
  2. font-size: 18px;
  3. }
  4. label {
  5. display: block;
  6. margin: 4px auto;
  7. text-align: center;
  8. }
  9. h1 {
  10. text-align: center;
  11. font-size: 120%;
  12. }
  13. h2 {
  14. font-size: 110%;
  15. color: blue;
  16. padding: 0 8px;
  17. margin: 8px auto;
  18. }
  19. .field-label {
  20. color: blue;
  21. text-align: center;
  22. padding: 0 8px;
  23. margin: 8px auto;
  24. font-size: 120%;
  25. }
  26. .width-50-percent {
  27. float: left;
  28. width: 50%;
  29. }
  30. .clearer {
  31. display: block;
  32. clear: both;
  33. }
  34. /* result items */
  35. .result-item {
  36. border-bottom: 1px solid gray;
  37. margin: 4px;
  38. padding: 4px;
  39. padding-right: 28px;
  40. background-position: right top;
  41. background-repeat: no-repeat;
  42. }
  43. .result-item-thumb {
  44. width: 48px;
  45. height: 48px;
  46. overflow: hidden;
  47. float: left;
  48. margin: 0 4px 0 0;
  49. border: 1px solid gray;
  50. }
  51. .result-item img {
  52. }
  53. .result-item-title {
  54. font-size: 80%;
  55. color: gray;
  56. float:left;
  57. }
  58. .result-item-date {
  59. font-size: 80%;
  60. color: green;
  61. text-align: right;
  62. }
  63. .result-item-twitter {
  64. background-image: url("../images/service_twitter.png");
  65. }
  66. .result-item-news {
  67. background-image: url("../images/service_news.png");
  68. }
  69. .result-item-picasa {
  70. background-image: url("../images/service_picasa.png");
  71. }
  72. .result-item-wikipedia {
  73. background-image: url("../images/service_wikipedia.png");
  74. }
  75. /* item details */
  76. .item-detail-photo {
  77. margin: 2px;
  78. display: block;
  79. border: 1px solid #eeeeee;
  80. padding: 2px;
  81. float: left;
  82. }
  83. .item-detail-author-thumb {
  84. margin: 0 5px 5px 5px;
  85. float: left;
  86. padding: 4px;
  87. border: 1px solid #eeeeee;
  88. background: #f8f8f8;
  89. }
  90. .item-detail-subtitle {
  91. font-size: 80%;
  92. color: gray;
  93. margin: 4px 8px;
  94. }
  95. .item-detail-text {
  96. font-size: 80%;
  97. margin: 8px 8px;
  98. padding: 10px;
  99. line-height: 150%;
  100. }
  101. /* home */
  102. #intro-label {
  103. font-size: 80%;
  104. margin: 8px 8px;
  105. padding: 10px;
  106. line-height: 150%;
  107. }
  108. #intro-label span {
  109. color: red;
  110. }
  111. #lightbox-geocode-container {
  112. padding: 8px;
  113. }
  114. /* weather */
  115. #weather {
  116. padding: 8px 0;
  117. /* border-bottom: 3px dotted gray;*/
  118. margin: 0 0 8px 0;
  119. }
  120. #weather p {
  121. text-align: center;
  122. margin: 0 0 4px 0;
  123. }
  124. .weather-day {
  125. font-size: 14px;
  126. text-align: center;
  127. display: block;
  128. }
  129. /* weather detail */
  130. .weather-subitem {
  131. border-bottom: 3px dotted gray;
  132. margin: 4px;
  133. padding: 4px;
  134. padding-right: 28px;
  135. background-position: right top;
  136. background-repeat: no-repeat;
  137. }
  138. .weather-subitem-icon {
  139. float: left;
  140. margin: 0 4px 0 0;
  141. width: 56px;
  142. height: 56px;
  143. background: url("../images/weather-icon-day-bg.png") no-repeat;
  144. }
  145. .weather-subitem-icon img {
  146. margin: 9px;
  147. }
  148. .weather-subitem-time {
  149. font-size: 38px;
  150. color: gray;
  151. line-height: 56px;
  152. }
  153. /* form fields */
  154. .rounded_textfield
  155. {
  156. margin-top: 6px;
  157. height: 55px;
  158. background: url("../images/textfield_left.png") top left repeat-y;
  159. }
  160. .rounded_textfield_right
  161. {
  162. height: 100%;
  163. margin-left: 30px;
  164. padding-right: 30px;
  165. background: url("../images/textfield_right.png") top right repeat-y;
  166. }
  167. .rounded_textfield input
  168. {
  169. background: none;
  170. margin: 3px;
  171. height: 49px;
  172. width: 100%;
  173. line-height: 49px;
  174. font-size: 40px;
  175. border:0px;
  176. }