utility.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. body.sanity_failed {
  2. background : #900;
  3. }
  4. body {
  5. background : #f5f5f5;
  6. color : black;
  7. padding : 0px;
  8. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  9. font-size: 14px;
  10. margin-left : auto;
  11. margin-right : auto;
  12. max-width : 800px;
  13. }
  14. body.small_margins {
  15. margin : 1em;
  16. max-width : none;
  17. }
  18. form {
  19. margin : 10px 0px 0px 0px;
  20. padding : 0px;
  21. }
  22. div.content {
  23. overflow : hidden;
  24. background : white;
  25. border : 1px solid #ddd;
  26. padding : 10px;
  27. border-radius : 6px;
  28. box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
  29. }
  30. p.warning {
  31. color : red;
  32. }
  33. p.query, code {
  34. color : green;
  35. }
  36. p.insensitive {
  37. color : gray;
  38. }
  39. div.insensitive-small {
  40. color : gray;
  41. font-size : 10px;
  42. }
  43. .floatingLogo {
  44. display : none;
  45. }
  46. a {
  47. color : rgb(82, 168, 236);
  48. text-decoration : none;
  49. }
  50. a:hover {
  51. color : black;
  52. }
  53. .alert {
  54. padding: 8px 35px 8px 14px;
  55. margin-bottom: 20px;
  56. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  57. background-color: #fcf8e3;
  58. border: 1px solid #fbeed5;
  59. -webkit-border-radius: 4px;
  60. -moz-border-radius: 4px;
  61. border-radius: 4px;
  62. }
  63. .alert,
  64. .alert h4 {
  65. color: #c09853;
  66. }
  67. .alert h4 {
  68. margin: 0;
  69. }
  70. .alert .close {
  71. position: relative;
  72. top: -2px;
  73. right: -21px;
  74. line-height: 20px;
  75. cursor : pointer;
  76. }
  77. .alert-success {
  78. color: #468847;
  79. background-color: #dff0d8;
  80. border-color: #d6e9c6;
  81. }
  82. .alert-success h4 {
  83. color: #468847;
  84. }
  85. .alert-danger,
  86. .alert-error {
  87. color: #b94a48;
  88. background-color: #f2dede;
  89. border-color: #eed3d7;
  90. }
  91. .alert-danger h4,
  92. .alert-error h4 {
  93. color: #b94a48;
  94. }
  95. .alert-info {
  96. color: #3a87ad;
  97. background-color: #d9edf7;
  98. border-color: #bce8f1;
  99. }
  100. .alert-info h4 {
  101. color: #3a87ad;
  102. }
  103. h1 {
  104. color : rgb(82, 168, 236);
  105. font-size : 32px;
  106. margin : 20px 0px 5px 0px;
  107. text-shadow : 0 0 6px #fff;
  108. }
  109. h2 {
  110. color : rgb(82, 168, 236);
  111. font-size : 14pt;
  112. border-width : 0px 0px 1px 0px;
  113. border-color : #f0f0f0;
  114. border-style : solid;
  115. }
  116. div.content > h2 {
  117. margin-top : 0px;
  118. }
  119. div.rss h1 {
  120. border-width : 0px 0px 1px 0px;
  121. border-color : gray;
  122. border-style : dotted;
  123. color : gray;
  124. }
  125. div.rss h2 {
  126. font-size : 12pt;
  127. }
  128. div.rss a.extlink {
  129. color : gray;
  130. border-width : 0px 0px 1px 0px;
  131. border-color : #778899;
  132. border-style : dotted;
  133. font-size : 9pt;
  134. }
  135. div.rss img {
  136. max-width : 775px;
  137. }
  138. div.rss p.description {
  139. color : gray;
  140. font-size : 9pt;
  141. }
  142. div.rss div.content {
  143. margin-top : 0.5em;
  144. }
  145. div.rss img.feedicon {
  146. float : right;
  147. }
  148. div.rss hr {
  149. border-width : 0px 0px 1px 0px;
  150. border-style : dashed;
  151. border-color : #e0e0e0;
  152. }
  153. body#sharepopup {
  154. background-color : white;
  155. background-image : url("../images/toolbar.png");
  156. background-repeat : repeat-x;
  157. background-position : bottom;
  158. margin : 10px;
  159. padding : 0px;
  160. }
  161. body#sharepopup h1 {
  162. font-size : 14px;
  163. margin : 0px;
  164. color : rgb(82, 168, 236);
  165. }
  166. body#sharepopup table {
  167. background : white;
  168. border : 1px solid rgb(82, 168, 236);
  169. padding : 5px;
  170. }
  171. body#sharepopup form {
  172. height : 100%;
  173. }
  174. body#sharepopup input {
  175. width : 100%;
  176. }
  177. div.autocomplete {
  178. position : absolute;
  179. width : 250px;
  180. background-color : white;
  181. border :1px solid #778899;
  182. margin : 0px;
  183. padding : 0px;
  184. z-index : 4;
  185. }
  186. div.autocomplete ul {
  187. list-style-type : none;
  188. margin : 0px;
  189. padding : 0px;
  190. font-size : 10px;
  191. }
  192. div.autocomplete ul li.selected {
  193. background-color : #fff7d5;
  194. }
  195. div.autocomplete ul li {
  196. list-style-type : none;
  197. display : block;
  198. margin : 0;
  199. padding : 2px;
  200. height : 32px;
  201. cursor : pointer;
  202. }
  203. fieldset {
  204. border-width : 0px;
  205. padding : 0px 0px 5px 0px;
  206. margin : 0px;
  207. }
  208. fieldset input {
  209. font-family : sans-serif;
  210. font-size : medium;
  211. border-spacing : 2px;
  212. border : 1px solid #b5bcc7;
  213. padding : 2px;
  214. }
  215. fieldset label {
  216. width : 120px;
  217. margin-right : 20px;
  218. display : inline-block;
  219. text-align : right;
  220. color : gray;
  221. }
  222. body.otp {
  223. margin : 1em;
  224. padding : 0px;
  225. }
  226. form.otpform {
  227. margin : 0px;
  228. padding : 0px;
  229. }
  230. form.otpform label {
  231. margin : 0px;
  232. padding : 0px;
  233. }
  234. body.otp div.content {
  235. display : inline-block;
  236. width : auto;
  237. }
  238. span.hint {
  239. font-size : 10px;
  240. color : gray;
  241. }