[77] | 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 | |
---|
| 16 | |
---|
| 17 | body { |
---|
| 18 | padding-top: 10px; |
---|
| 19 | font-family: Arial, Sans-Serif; |
---|
| 20 | } |
---|
| 21 | |
---|
| 22 | h1, |
---|
| 23 | h2 { |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | h1 span, |
---|
| 27 | h2 span { |
---|
| 28 | color: #65AEFF; |
---|
| 29 | font-style: italic; |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | a#read-more { |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | pre#code, |
---|
| 36 | code { |
---|
| 37 | display: block; |
---|
| 38 | border: 1px solid #aaa; |
---|
| 39 | padding: 5px; |
---|
| 40 | background-color: #ddd; |
---|
| 41 | } |
---|
| 42 | |
---|
| 43 | #breadcrumb, |
---|
| 44 | #logo { |
---|
| 45 | border: 2px black solid; |
---|
| 46 | background-color: #eee; |
---|
| 47 | padding: 3px; |
---|
| 48 | top: 0; |
---|
| 49 | right: 0; |
---|
| 50 | position: absolute; |
---|
| 51 | margin: 2px; |
---|
| 52 | opacity: 0.8; |
---|
| 53 | border-radius: 5px; |
---|
| 54 | } |
---|
| 55 | #breadcrumb a, |
---|
| 56 | #logo a { |
---|
| 57 | text-decoration: none; |
---|
| 58 | } |
---|
| 59 | |
---|
| 60 | th { |
---|
| 61 | text-align: left; |
---|
| 62 | border: 1px solid gray; |
---|
| 63 | background-color: #ddd; |
---|
| 64 | padding: 3px; |
---|
| 65 | vertical-align: top; |
---|
| 66 | } |
---|
| 67 | |
---|
| 68 | td { |
---|
| 69 | vertical-align: top; |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | ol li { |
---|
| 73 | margin-top: 20px; |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | ol#implementation li code { |
---|
| 77 | margin-top: 5px; |
---|
| 78 | } |
---|
| 79 | |
---|
| 80 | td.description { |
---|
| 81 | background-color: #eee; |
---|
| 82 | padding: 3px; |
---|
| 83 | border: 1px solid #ddd; |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | td.chart { |
---|
| 87 | text-align: center; |
---|
| 88 | } |
---|
| 89 | |
---|
| 90 | .example_boxout { |
---|
| 91 | background-color: #eee; |
---|
| 92 | padding: 3px; |
---|
| 93 | border: 1px solid #aaa; |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | .code { |
---|
| 97 | padding: 5px; |
---|
| 98 | background-color: #eee; |
---|
| 99 | border: 2px dashed gray |
---|
| 100 | } |
---|
| 101 | |
---|
| 102 | /** |
---|
| 103 | * This is semi-transparent box in the top left corner |
---|
| 104 | */ |
---|
| 105 | div#devtag { |
---|
| 106 | -moz-border-radius: 5px; |
---|
| 107 | -webkit-border-radius: 5px; |
---|
| 108 | border-radius: 5px; |
---|
| 109 | -webkit-box-shadow: #999 3px 3px 3px; |
---|
| 110 | -moz-box-shadow: #999 3px 3px 3px; |
---|
| 111 | box-shadow: #999 3px 3px 3px; |
---|
| 112 | filter: progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135); |
---|
| 113 | position: fixed; |
---|
| 114 | top: 2px; |
---|
| 115 | right: 2px; |
---|
| 116 | width: 145px; |
---|
| 117 | border: 2px solid black; |
---|
| 118 | text-align: center; |
---|
| 119 | font-weight: bold; |
---|
| 120 | font-family: Arial; |
---|
| 121 | background-color: #fdd; |
---|
| 122 | z-index: 1001; |
---|
| 123 | opacity: 0.8; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | div#devtag a { |
---|
| 127 | font-size: 10px; |
---|
| 128 | text-decoration: none; |
---|
| 129 | color: blue; |
---|
| 130 | opacity: 1; |
---|
| 131 | } |
---|
| 132 | |
---|
| 133 | /** |
---|
| 134 | * This overrides something defined earlier |
---|
| 135 | */ |
---|
| 136 | ol#colors li { |
---|
| 137 | margin: 0; |
---|
| 138 | } |
---|
| 139 | |
---|
| 140 | /** |
---|
| 141 | * styles lists |
---|
| 142 | */ |
---|
| 143 | div.list-item { |
---|
| 144 | width: 220px; |
---|
| 145 | display: inline-block; |
---|
| 146 | } |
---|
| 147 | |
---|
| 148 | div.list-item.label { |
---|
| 149 | width: 170px; |
---|
| 150 | } |
---|
| 151 | |
---|
| 152 | legend { |
---|
| 153 | background-color: #efefef; |
---|
| 154 | border: 1px solid #75736e; |
---|
| 155 | } |
---|
| 156 | |
---|
| 157 | body#licensing span { |
---|
| 158 | font-size: 120%; |
---|
| 159 | } |
---|
| 160 | |
---|
| 161 | /** |
---|
| 162 | * The yellow warning box on the front page |
---|
| 163 | */ |
---|
| 164 | div.warning { |
---|
| 165 | border: 1px solid black; |
---|
| 166 | text-align: center; |
---|
| 167 | background-color: #ffa; |
---|
| 168 | padding: 5px; |
---|
| 169 | margin-top: 5px; |
---|
| 170 | border-radius: 15px; |
---|
| 171 | -moz-border-radius: 15px; |
---|
| 172 | -webkit-border-radius: 15px; |
---|
| 173 | -webkit-box-shadow: #aaa 1px 1px 15px; |
---|
| 174 | -moz-box-shadow: #aaa 1px 1px 15px; |
---|
| 175 | box-shadow: #aaa 1px 1px 15px; |
---|
| 176 | filter: progid:DXImageTransform.Microsoft.Shadow(color=#666666,direction=135); |
---|
| 177 | z-index: 98; |
---|
| 178 | } |
---|
| 179 | |
---|
| 180 | div.canvasfallback { |
---|
| 181 | border: 2px dashed red; |
---|
| 182 | background-color: #fee; |
---|
| 183 | width: 475px; |
---|
| 184 | height: 150px; |
---|
| 185 | text-align: center; |
---|
| 186 | padding-top: 50px; |
---|
| 187 | } |
---|
| 188 | |
---|
| 189 | /** |
---|
| 190 | * The title "bar" |
---|
| 191 | */ |
---|
| 192 | div#title { |
---|
| 193 | } |
---|
| 194 | |
---|
| 195 | div#title div#image { |
---|
| 196 | float: left; |
---|
| 197 | margin-right: 15px; |
---|
| 198 | } |
---|
| 199 | |
---|
| 200 | div#title div#text { |
---|
| 201 | padding-top: 5px; |
---|
| 202 | margin-left: 70px; |
---|
| 203 | } |
---|
| 204 | |
---|
| 205 | |
---|
| 206 | div.warning p { |
---|
| 207 | text-align: center; |
---|
| 208 | margin-top: 5px; |
---|
| 209 | margin-bottom: 5px; |
---|
| 210 | font-weight: bold; |
---|
| 211 | } |
---|
| 212 | |
---|
| 213 | |
---|
| 214 | div.description { |
---|
| 215 | border: 1px dashed gray; |
---|
| 216 | background-color: #eee; |
---|
| 217 | font-size: 75%; |
---|
| 218 | padding: 3px; |
---|
| 219 | } |
---|
| 220 | |
---|
| 221 | div#social { |
---|
| 222 | display: inline; |
---|
| 223 | display: inline-block; |
---|
| 224 | } |
---|
| 225 | |
---|
| 226 | .upgrade_notice { |
---|
| 227 | display: inline; |
---|
| 228 | display: inline-block; |
---|
| 229 | text-align: center; |
---|
| 230 | background-color: yellow; |
---|
| 231 | border: 1px black solid; |
---|
| 232 | border-radius: 10px; |
---|
| 233 | -webkit-border-radius: 10px; |
---|
| 234 | -moz-border-radius: 10px; |
---|
| 235 | padding: 3px; |
---|
| 236 | padding-left: 5px; |
---|
| 237 | padding-right: 5px; |
---|
| 238 | } |
---|