roofline.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. .roofline * { padding: 0; margin: 0; vertical-align: top; }
  2. .roofline {
  3. background: url(background.png) repeat-x;
  4. font: 18px/1.5em "proxima-nova", Helvetica, Arial, sans-serif;
  5. }
  6. .roofline a { color: #069; }
  7. .roofline a:hover { color: #28b; }
  8. .roofline h2 {
  9. margin-top: 15px;
  10. font: normal 32px "omnes-pro", Helvetica, Arial, sans-serif;
  11. }
  12. .roofline h3 {
  13. margin-left: 30px;
  14. font: normal 26px "omnes-pro", Helvetica, Arial, sans-serif;
  15. color: #666;
  16. cursor: pointer;
  17. }
  18. .roofline p {
  19. margin-top: 10px;
  20. font-size: 14px;
  21. color: #666;
  22. }
  23. .roofline table {
  24. font-size: 14px;
  25. color: #666;
  26. }
  27. .roofline input {
  28. font-size: 18px;
  29. }
  30. .roofline input[type=checkbox] {
  31. margin: 7px;
  32. }
  33. .roofline #header {
  34. position: relative;
  35. width: 900px;
  36. margin: auto;
  37. }
  38. .roofline .header {
  39. position: relative;
  40. width: 900px;
  41. /* margin: auto;*/
  42. }
  43. .roofline #header h2 {
  44. margin-left: 10px;
  45. vertical-align: middle;
  46. font-size: 42px;
  47. font-weight: bold;
  48. text-decoration: none;
  49. color: #000;
  50. }
  51. .roofline .header h2 {
  52. margin-left: 0px;
  53. vertical-align: middle;
  54. font-size: 42px;
  55. font-weight: bold;
  56. text-decoration: none;
  57. color: #000;
  58. }
  59. .roofline #content {
  60. /*width: 880px;*/
  61. margin: 0 auto;
  62. padding: 10px;
  63. }
  64. .roofline #footer {
  65. margin-top: 25px;
  66. margin-bottom: 10px;
  67. text-align: center;
  68. font-size: 12px;
  69. color: #999;
  70. }
  71. .roofline #span {
  72. font-size: 15px;
  73. }
  74. .roofline .demo-container {
  75. box-sizing: border-box;
  76. width: 970px;
  77. height: 450px;
  78. padding: 20px 15px 15px 15px;
  79. margin: 15px auto 30px 20px;
  80. border: 1px solid #ddd;
  81. background: #fff;
  82. background: linear-gradient(#f6f6f6 0, #fff 50px);
  83. background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  84. background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  85. background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  86. background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  87. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  88. -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  89. -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  90. -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  91. -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  92. }
  93. .roofline .functioninfo-container {
  94. box-sizing: border-box;
  95. width: 970px;
  96. height: 620px;
  97. padding: 20px 15px 15px 15px;
  98. margin: 15px auto 30px 20px;
  99. border: 1px solid #ddd;
  100. background: #fff;
  101. background: linear-gradient(#f6f6f6 0, #fff 50px);
  102. background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  103. background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  104. background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  105. background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  106. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  107. -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  108. -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  109. -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  110. -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  111. }
  112. .roofline .optimization-container {
  113. box-sizing: border-box;
  114. width: 970px;
  115. height: 500px;
  116. padding: 10px 10px 10px 10px;
  117. margin: 15px auto 30px 20px;
  118. border: 1px solid #ddd;
  119. background: #fff;
  120. background: linear-gradient(#f6f6f6 0, #fff 50px);
  121. background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  122. background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  123. background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  124. background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  125. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  126. -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  127. -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  128. -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  129. -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  130. }
  131. .roofline .demo-placeholder {
  132. width: 100%;
  133. height: 100%;
  134. font-size: 14px;
  135. line-height: 14px;
  136. }
  137. .roofline .legend table {
  138. border-spacing: 5px;
  139. }
  140. .roofline .options {
  141. font-size: 10px;
  142. }
  143. .roofline input.button_add {
  144. background-image: url(./images/zoomout-16.png); /* 16px x 16px */
  145. background-color: transparent; /* make the button transparent */
  146. background-repeat: no-repeat; /* make the background image appear only once */
  147. background-position: 0px 0px; /* equivalent to 'top left' */
  148. border: none; /* assuming we don't want any borders */
  149. cursor: pointer; /* make the cursor like hovering over an <a> element */
  150. height: 16px; /* make this the size of your image */
  151. padding-left: 16px; /* make text start to the right of the image */
  152. vertical-align: middle; /* align the text vertically centered */
  153. }
  154. .roofline input.button_next {
  155. background-image: url(./images/bullet-right.png); /* 16px x 16px */
  156. background-color: transparent; /* make the button transparent */
  157. background-repeat: no-repeat; /* make the background image appear only once */
  158. background-position: 0px 0px; /* equivalent to 'top left' */
  159. border: none; /* assuming we don't want any borders */
  160. cursor: pointer; /* make the cursor like hovering over an <a> element */
  161. height: 16px; /* make this the size of your image */
  162. padding-left: 16px; /* make text start to the right of the image */
  163. vertical-align: middle; /* align the text vertically centered */
  164. }
  165. .roofline input.button_prev {
  166. background-image: url(./images/bullet-left.png); /* 16px x 16px */
  167. background-color: transparent; /* make the button transparent */
  168. background-repeat: no-repeat; /* make the background image appear only once */
  169. background-position: 0px 0px; /* equivalent to 'top left' */
  170. border: none; /* assuming we don't want any borders */
  171. cursor: pointer; /* make the cursor like hovering over an <a> element */
  172. height: 16px; /* make this the size of your image */
  173. padding-left: 16px; /* make text start to the right of the image */
  174. vertical-align: middle; /* align the text vertically centered */
  175. }
  176. .roofline input.button_max {
  177. background-image: url(./images/right_forward.png); /* 16px x 16px */
  178. background-color: transparent; /* make the button transparent */
  179. background-repeat: no-repeat; /* make the background image appear only once */
  180. background-position: 0px 0px; /* equivalent to 'top left' */
  181. border: none; /* assuming we don't want any borders */
  182. cursor: pointer; /* make the cursor like hovering over an <a> element */
  183. height: 16px; /* make this the size of your image */
  184. padding-left: 16px; /* make text start to the right of the image */
  185. vertical-align: middle; /* align the text vertically centered */
  186. }
  187. .roofline input.button_min {
  188. background-image: url(./images/left_forward.png); /* 16px x 16px */
  189. background-color: transparent; /* make the button transparent */
  190. background-repeat: no-repeat; /* make the background image appear only once */
  191. background-position: 0px 0px; /* equivalent to 'top left' */
  192. border: none; /* assuming we don't want any borders */
  193. cursor: pointer; /* make the cursor like hovering over an <a> element */
  194. height: 16px; /* make this the size of your image */
  195. padding-left: 16px; /* make text start to the right of the image */
  196. vertical-align: middle; /* align the text vertically centered */
  197. }
  198. .roofline input.button_doxy {
  199. background-image: url(./images/document.png); /* 16px x 16px */
  200. background-color: transparent; /* make the button transparent */
  201. background-repeat: no-repeat; /* make the background image appear only once */
  202. background-position: 0px 0px; /* equivalent to 'top left' */
  203. border: none; /* assuming we don't want any borders */
  204. cursor: pointer; /* make the cursor like hovering over an <a> element */
  205. height: 16px; /* make this the size of your image */
  206. padding-left: 16px; /* make text start to the right of the image */
  207. vertical-align: middle; /* align the text vertically centered */
  208. }
  209. .roofline input.button_info {
  210. background-image: url(./images/info.png); /* 16px x 16px */
  211. background-color: transparent; /* make the button transparent */
  212. background-repeat: no-repeat; /* make the background image appear only once */
  213. background-position: 0px 0px; /* equivalent to 'top left' */
  214. border: none; /* assuming we don't want any borders */
  215. cursor: pointer; /* make the cursor like hovering over an <a> element */
  216. height: 16px; /* make this the size of your image */
  217. padding-left: 16px; /* make text start to the right of the image */
  218. vertical-align: middle; /* align the text vertically centered */
  219. }
  220. .roofline input.button_instrvstime {
  221. background-image: url(./images/instrvstime.png); /* 16px x 16px */
  222. background-color: transparent; /* make the button transparent */
  223. background-repeat: no-repeat; /* make the background image appear only once */
  224. background-position: 0px 0px; /* equivalent to 'top left' */
  225. border: none; /* assuming we don't want any borders */
  226. cursor: pointer; /* make the cursor like hovering over an <a> element */
  227. height: 16px; /* make this the size of your image */
  228. padding-left: 16px; /* make text start to the right of the image */
  229. vertical-align: middle; /* align the text vertically centered */
  230. }
  231. .roofline input.button_roofline {
  232. background-image: url(./images/roofline.png); /* 16px x 16px */
  233. background-color: transparent; /* make the button transparent */
  234. background-repeat: no-repeat; /* make the background image appear only once */
  235. background-position: 0px 0px; /* equivalent to 'top left' */
  236. border: none; /* assuming we don't want any borders */
  237. cursor: pointer; /* make the cursor like hovering over an <a> element */
  238. height: 16px; /* make this the size of your image */
  239. padding-left: 16px; /* make text start to the right of the image */
  240. vertical-align: middle; /* align the text vertically centered */
  241. }
  242. .roofline input.button_optimization {
  243. background-image: url(./images/optimization.png); /* 16px x 16px */
  244. background-color: transparent; /* make the button transparent */
  245. background-repeat: no-repeat; /* make the background image appear only once */
  246. background-position: 0px 0px; /* equivalent to 'top left' */
  247. border: none; /* assuming we don't want any borders */
  248. cursor: pointer; /* make the cursor like hovering over an <a> element */
  249. height: 16px; /* make this the size of your image */
  250. padding-left: 16px; /* make text start to the right of the image */
  251. vertical-align: middle; /* align the text vertically centered */
  252. }
  253. .roofline .ui-progressbar {
  254. height:15px;
  255. width:50px;
  256. font-size: 1px;
  257. margin:0 auto;
  258. margin-top: 5px;
  259. }
  260. .roofline .ui-progressbar .ui-progressbar-value {
  261. height: 100%;
  262. }
  263. .roofline .ui-progressbar span {
  264. width:50px;
  265. position:absolute;
  266. text-align:center;
  267. font-size: 10px;
  268. margin-top: -5px;
  269. }
  270. /*tab view */
  271. .roofline .tab {
  272. font-size: 14px;
  273. width: 200px;
  274. padding: 5px;
  275. /*color: #065fba;*/
  276. color: #666;
  277. /*background: #f4f5f8;*/
  278. /*background: #868687;*/
  279. background: #C0C1C4;
  280. border: #e2e2e2 1px solid;
  281. }
  282. .roofline .tab:hover {
  283. /*background: #065fba;*/
  284. background: #474747;
  285. /*color: #f4f5f8;*/
  286. color: #FFFFFF;
  287. }
  288. .roofline .tabSelect {
  289. font-size: 14px;
  290. width: 800px;
  291. padding: 5px;
  292. /*background: #065fba;*/
  293. background: #868687;
  294. /*color: #f4f5f8;*/
  295. color: #FFFFFF;
  296. border: #e2e2e2 1px solid;
  297. }
  298. .roofline .box {
  299. width: 950px;
  300. margin-top:5;
  301. padding: 5px;
  302. background: #ffffff;
  303. /*border: #065fba 2px solid;*/
  304. height:400px;
  305. }
  306. .roofline a {
  307. color: #000000;
  308. text-decoration: none;
  309. }
  310. /*floating sidebar*/
  311. .roofline #float {
  312. position:fixed;
  313. top:200px;
  314. right:5px;
  315. background: #fff;
  316. background: linear-gradient(#f6f6f6 0, #fff 50px);
  317. background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  318. background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  319. background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  320. background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  321. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  322. -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  323. -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  324. -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  325. -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  326. }
  327. .roofline #floaticons {
  328. position:fixed;
  329. top:200px;
  330. right:5px;
  331. background: #fff;
  332. background: linear-gradient(#f6f6f6 0, #fff 50px);
  333. background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
  334. background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
  335. background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
  336. background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
  337. box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  338. -o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  339. -ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  340. -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  341. -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  342. }
  343. .roofline table.opttable {
  344. border: 0px;
  345. table-layout: fixed;
  346. width: 970px;
  347. }
  348. .roofline table.opttable th {
  349. border-width: 1px;
  350. padding: 8px;
  351. border-style: solid;
  352. border-color: #666666;
  353. background-color: #dedede;
  354. }
  355. .roofline table.opttable td.number {
  356. width: 25px;
  357. }
  358. .roofline table.opttable td.function {
  359. width: 250px;
  360. }
  361. .roofline table.opttable td.optimization{
  362. width: 104px;
  363. }
  364. .roofline table.opttable td.timegain{
  365. width: 120px;
  366. margin-right: auto;
  367. padding:0 40px 0 10px;
  368. }
  369. .roofline table.opttable td.timegainpercent{
  370. width: 110px;
  371. margin-right: auto;
  372. margin-left: auto;
  373. }
  374. .roofline table.opttable td.speedup{
  375. width: 80px;
  376. }
  377. .roofline table.opttable td.optimizationbar{
  378. width: 330px;
  379. }
  380. .roofline table.opttable td.combinedoptimizationbar{
  381. width: 435px;
  382. }
  383. .roofline table.opttable td.funoptimizationbar{
  384. width: 430px;
  385. }
  386. .roofline table.opttable td.buttons{
  387. width: 80px;
  388. }