website.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. /**
  2. * o------------------------------------------------------------------------------o
  3. * | This file is part of the RGraph package - you can learn more at: |
  4. * | |
  5. * | http://www.rgraph.net |
  6. * | |
  7. * | This package is licensed under the RGraph license. For all kinds of business |
  8. * | purposes there is a small one-time licensing fee to pay and for non |
  9. * | purposes there is a small one-time licensing fee to pay and for non |
  10. * | commercial purposes it is free to use. You can read the full license here: |
  11. * | |
  12. * | http://www.rgraph.net/LICENSE.txt |
  13. * o------------------------------------------------------------------------------o
  14. */
  15. body {
  16. padding-top: 10px;
  17. font-family: Segoe UI Light, Segoe UI, Trebuchet MS, Verdana, Arial, Sans-serif;
  18. font-weight: Lighter;
  19. }
  20. b {
  21. font-weight: bold;
  22. }
  23. h1,
  24. h2,
  25. h3,
  26. h4 {
  27. font-weight: lighter;
  28. }
  29. h1 span,
  30. h2 span,
  31. h3 span,
  32. h4 span {
  33. color: #65AEFF;
  34. font-style: italic;
  35. }
  36. a#read-more {
  37. }
  38. pre.code,
  39. code {
  40. padding: 5px;
  41. background-color: #eee;
  42. border: 2px dashed gray
  43. }
  44. pre.code span {
  45. color: green;
  46. }
  47. pre.code span span {
  48. color: #770;
  49. }
  50. #breadcrumb,
  51. #logo {
  52. float: right;
  53. margin: 2px;
  54. font-size: 10pt;
  55. position: relative;
  56. }
  57. #breadcrumb a,
  58. #logo a {
  59. text-decoration: none;
  60. }
  61. th {
  62. text-align: left;
  63. border: 1px solid gray;
  64. background-color: #ddd;
  65. padding: 3px;
  66. vertical-align: top;
  67. }
  68. td {
  69. vertical-align: top;
  70. }
  71. table#message-list td {
  72. font-weight: normal;
  73. }
  74. ol li {
  75. margin-top: 20px;
  76. }
  77. ol#implementation li code {
  78. margin-top: 5px;
  79. }
  80. ol.compact li {
  81. margin-top: 0;
  82. }
  83. td.description {
  84. background-color: #eee;
  85. padding: 3px;
  86. border: 1px solid #ddd;
  87. }
  88. td.chart {
  89. text-align: center;
  90. }
  91. .example_boxout {
  92. background-color: #eee;
  93. padding: 3px;
  94. border: 1px solid #aaa;
  95. }
  96. /**
  97. * This is semi-transparent box in the top left corner
  98. */
  99. div#devtag {
  100. -moz-border-radius: 5px;
  101. -webkit-border-radius: 5px;
  102. border-radius: 5px;
  103. -webkit-box-shadow: #999 3px 3px 3px;
  104. -moz-box-shadow: #999 3px 3px 3px;
  105. box-shadow: #999 3px 3px 3px;
  106. filter: progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135);
  107. position: fixed;
  108. top: 2px;
  109. left: 2px;
  110. width: 145px;
  111. border: 2px solid black;
  112. text-align: center;
  113. font-weight: bold;
  114. font-family: Arial;
  115. background-color: #fdd;
  116. z-index: 1001;
  117. opacity: 0.3;
  118. }
  119. /**
  120. * This overrides something defined earlier
  121. */
  122. ol#colors li {
  123. margin: 0;
  124. }
  125. /**
  126. * styles lists
  127. */
  128. div.list-item {
  129. width: 220px;
  130. display: inline-block;
  131. }
  132. div.list-item.label {
  133. width: 170px;
  134. }
  135. legend {
  136. background-color: #efefef;
  137. border: 1px solid #75736e;
  138. }
  139. body#licensing span {
  140. font-size: 120%;
  141. }
  142. /**
  143. * The yellow warning box on the front page
  144. */
  145. div.warning {
  146. border: 1px solid black;
  147. _text-align: center;
  148. background-color: #ffa;
  149. padding: 5px;
  150. margin-top: 5px;
  151. border-radius: 15px;
  152. -moz-border-radius: 15px;
  153. -webkit-border-radius: 15px;
  154. webkit-box-shadow: #aaa 1px 1px 15px;
  155. -moz-box-shadow: #aaa 1px 1px 15px;
  156. box-shadow: #aaa 1px 1px 15px;
  157. filter: progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135);
  158. z-index: 98;
  159. opacity: 0.9;
  160. }
  161. /**
  162. * The title "bar"
  163. */
  164. div#title {
  165. }
  166. div#title div#image {
  167. float: left;
  168. margin-right: 15px;
  169. }
  170. div#title div#text {
  171. padding-top: 5px;
  172. margin-left: 70px;
  173. }
  174. div.warning p {
  175. text-align: center;
  176. margin-top: 5px;
  177. margin-bottom: 5px;
  178. font-weight: bold;
  179. }
  180. div.description {
  181. border: 1px dashed gray;
  182. background-color: #eee;
  183. font-size: 75%;
  184. padding: 3px;
  185. }
  186. div#social {
  187. display: inline;
  188. display: inline-block;
  189. }
  190. .upgrade_notice {
  191. display: inline;
  192. display: inline-block;
  193. text-align: center;
  194. background-color: yellow;
  195. border: 1px black solid;
  196. border-radius: 10px;
  197. -webkit-border-radius: 10px;
  198. -moz-border-radius: 10px;
  199. padding: 3px;
  200. padding-left: 5px;
  201. padding-right: 5px;
  202. }
  203. div.navigation,
  204. div.testimonial {
  205. font-size: 80%;
  206. background-color: rgba(248,248,248, 0.5);
  207. padding: 6px;
  208. border: 1px solid #ddd;
  209. border-radius: 15px;
  210. box-shadow: 0 0 15px #ddd;
  211. background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(white));
  212. background: -moz-linear-gradient(top, #eee, white);
  213. background-image: linear-gradient( 0deg, white, #eee);
  214. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff');
  215. }
  216. div#social_icons img {
  217. border: none;
  218. }
  219. span.javascript-comment {
  220. color: #090;
  221. }
  222. .ModalDialog_dialog {
  223. box-shadow: 0 0 25px gray ! important;
  224. }
  225. /*****************
  226. * New navigation *
  227. *****************/
  228. div.navigation {
  229. box-shadow: 0 0 15px #ddd;
  230. margin-top: 10px;
  231. min-height: 30px;
  232. }
  233. div.navigation span {
  234. font-size: 18pt;
  235. }
  236. div.navigation span.selected {
  237. background-color: rgb(255,228,228);
  238. background-color: rgba(255,0,0,0.2);
  239. padding: 3px;
  240. border-radius: 10px;
  241. border: 1px solid gray;
  242. background: -webkit-radial-gradient(0 0, rgba(255,128,128,0), rgba(255,128,128,0.5));
  243. background: -moz-radial-gradient(0 0, rgba(255,128,128,0), rgba(255,128,128,0.5));
  244. background: -ms-radial-gradient(0 0, rgba(255,128,128,0), rgba(255,128,128,0.5));
  245. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeee', endColorstr='#888888');
  246. }
  247. div.navigation span a {
  248. text-decoration: none;
  249. }
  250. /****************
  251. * Website lists *
  252. * **************/
  253. ul
  254. {
  255. list-style-image:url('http://www.rgraph.net/images/bullet.png');
  256. }
  257. /**
  258. * The recent updates box on the front page
  259. */
  260. div#recent {
  261. color: #333;
  262. background-color: #f6f6f6;
  263. padding: 10px;
  264. margin-left: 10px;
  265. font-size: 90%;
  266. }
  267. div#recent div {
  268. letter-spacing: 2px;
  269. margin-top: 5px;
  270. //text-align: center;
  271. }
  272. div#recent a {
  273. text-decoration: none;
  274. font-style: italic;
  275. }
  276. div#recent b {
  277. color: #666;
  278. }
  279. canvas.grayscale {
  280. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  281. filter: gray; /* IE6-9 */
  282. -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  283. }
  284. div.testimonial {
  285. background-color: none;
  286. background: none;
  287. box-shadow: none;
  288. border: none;
  289. }
  290. .documentation_header {
  291. border: 1px solid #aaa;
  292. background-color: #eee;
  293. font-style: italic;
  294. padding: 5px;
  295. -moz-border-radius: 10px;
  296. -webkit-border-radius: 10px;
  297. border-radius: 10px
  298. }
  299. h1,
  300. h2,
  301. h3 {
  302. text-shadow: 1px 1px 2px #ccc;
  303. }
  304. span#byline {
  305. position: relative;
  306. top: -15px;
  307. }