Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

915 lines
19 KiB

5 years ago
  1. /*
  2. * File: demo_table.css
  3. * CVS: $Id$
  4. * Description: CSS descriptions for DataTables demo pages
  5. * Author: Allan Jardine
  6. * Created: Tue May 12 06:47:22 BST 2009
  7. * Modified: $Date$ by $Author$
  8. * Language: CSS
  9. * Project: DataTables
  10. *
  11. * Copyright 2009 Allan Jardine. All Rights Reserved.
  12. *
  13. * ***************************************************************************
  14. * DESCRIPTION
  15. *
  16. * The styles given here are suitable for the demos that are used with the standard DataTables
  17. * distribution (see www.datatables.net). You will most likely wish to modify these styles to
  18. * meet the layout requirements of your site.
  19. *
  20. * Common issues:
  21. * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
  22. * no conflict between the two pagination types. If you want to use full_numbers pagination
  23. * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
  24. * modify that selector.
  25. * Note that the path used for Images is relative. All images are by default located in
  26. * ../images/ - relative to this CSS file.
  27. */
  28. /* GENERAL */
  29. body {
  30. }
  31. table thead tr {
  32. background:#353535;
  33. height: 30px;
  34. }
  35. table thead th {
  36. border-right: 1px solid #ccc;
  37. color: #b2c831;
  38. font-size: 12px;
  39. }
  40. table thead th:last-of-type { border-right: none; }
  41. table tbody {
  42. border-top: 1px solid #bbb;
  43. border-bottom: 1px solid #bbb;
  44. }
  45. table tr.odd { background-color: #fff; }
  46. table tr.even { background-color: #f6f6f6; }
  47. table td { padding: 8px 10px; border-right: 1px solid #ccc; }
  48. table tbody tr:hover { background-color: #ddd; }
  49. .display { width: 100%; }
  50. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  51. * DataTables features
  52. */
  53. .dataTables_wrapper {
  54. position: relative;
  55. clear: both;
  56. zoom: 1; /* Feeling sorry for IE */
  57. }
  58. .dataTables_processing {
  59. position: absolute;
  60. top: 50%;
  61. left: 50%;
  62. width: 250px;
  63. height: 30px;
  64. margin-left: -125px;
  65. margin-top: -15px;
  66. padding: 14px 0 2px 0;
  67. border: 1px solid #ddd;
  68. text-align: center;
  69. color: #999;
  70. font-size: 14px;
  71. background-color: white;
  72. }
  73. .dataTables_length {
  74. width: 40%;
  75. float: left;
  76. }
  77. .dataTables_filter {
  78. width: 50%;
  79. float: right;
  80. text-align: right;
  81. }
  82. .dataTables_info {
  83. width: 60%;
  84. float: left;
  85. }
  86. .dataTables_paginate {
  87. float: right;
  88. text-align: right;
  89. }
  90. /* Pagination nested */
  91. .paginate_disabled_previous, .paginate_enabled_previous,
  92. .paginate_disabled_next, .paginate_enabled_next {
  93. height: 19px;
  94. float: left;
  95. cursor: pointer;
  96. *cursor: hand;
  97. color: #111 !important;
  98. }
  99. .paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
  100. .paginate_disabled_next:hover, .paginate_enabled_next:hover {
  101. text-decoration: none !important;
  102. }
  103. .paginate_disabled_previous:active, .paginate_enabled_previous:active,
  104. .paginate_disabled_next:active, .paginate_enabled_next:active {
  105. outline: none;
  106. }
  107. .paginate_disabled_previous,
  108. .paginate_disabled_next {
  109. color: #666 !important;
  110. }
  111. .paginate_disabled_previous, .paginate_enabled_previous {
  112. padding-left: 23px;
  113. }
  114. .paginate_disabled_next, .paginate_enabled_next {
  115. padding-right: 23px;
  116. margin-left: 10px;
  117. }
  118. .paginate_disabled_previous {
  119. background: url('../images/back_disabled.png') no-repeat top left;
  120. }
  121. .paginate_enabled_previous {
  122. background: url('../images/back_enabled.png') no-repeat top left;
  123. }
  124. .paginate_enabled_previous:hover {
  125. background: url('../images/back_enabled_hover.png') no-repeat top left;
  126. }
  127. .paginate_disabled_next {
  128. background: url('../images/forward_disabled.png') no-repeat top right;
  129. }
  130. .paginate_enabled_next {
  131. background: url('../images/forward_enabled.png') no-repeat top right;
  132. }
  133. .paginate_enabled_next:hover {
  134. background: url('../images/forward_enabled_hover.png') no-repeat top right;
  135. }
  136. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  137. * DataTables display
  138. */
  139. table.display {
  140. margin: 0 auto;
  141. clear: both;
  142. width: 100%;
  143. /* Note Firefox 3.5 and before have a bug with border-collapse
  144. * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
  145. * border-spacing: 0; is one possible option. Conditional-css.com is
  146. * useful for this kind of thing
  147. *
  148. * Further note IE 6/7 has problems when calculating widths with border width.
  149. * It subtracts one px relative to the other browsers from the first column, and
  150. * adds one to the end...
  151. *
  152. * If you want that effect I'd suggest setting a border-top/left on th/td's and
  153. * then filling in the gaps with other borders.
  154. */
  155. }
  156. table.display thead th {
  157. padding: 3px 18px 3px 10px;
  158. border-bottom: 1px solid black;
  159. font-weight: bold;
  160. cursor: pointer;
  161. * cursor: hand;
  162. }
  163. table.display tfoot th {
  164. padding: 3px 18px 3px 10px;
  165. border-top: 1px solid black;
  166. font-weight: bold;
  167. }
  168. table.display tr.heading2 td {
  169. border-bottom: 1px solid #aaa;
  170. }
  171. table.display td {
  172. padding: 3px 10px;
  173. }
  174. table.display td.center {
  175. text-align: center;
  176. }
  177. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  178. * DataTables row classes
  179. */
  180. table.display tr.odd.gradeA {
  181. background-color: #ddffdd;
  182. }
  183. table.display tr.even.gradeA {
  184. background-color: #eeffee;
  185. }
  186. table.display tr.odd.gradeC {
  187. background-color: #ddddff;
  188. }
  189. table.display tr.even.gradeC {
  190. background-color: #eeeeff;
  191. }
  192. table.display tr.odd.gradeX {
  193. background-color: #ffdddd;
  194. }
  195. table.display tr.even.gradeX {
  196. background-color: #ffeeee;
  197. }
  198. table.display tr.odd.gradeU {
  199. background-color: #ddd;
  200. }
  201. table.display tr.even.gradeU {
  202. background-color: #eee;
  203. }
  204. tr.odd {
  205. background-color: #E2E4FF;
  206. }
  207. tr.even {
  208. background-color: white;
  209. }
  210. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  211. * Misc
  212. */
  213. .dataTables_scroll {
  214. clear: both;
  215. }
  216. .dataTables_scrollBody {
  217. *margin-top: -1px;
  218. -webkit-overflow-scrolling: touch;
  219. }
  220. .top, .bottom {
  221. padding: 15px;
  222. background-color: #F5F5F5;
  223. border: 1px solid #CCCCCC;
  224. }
  225. .top .dataTables_info {
  226. float: none;
  227. }
  228. .clear {
  229. clear: both;
  230. }
  231. .dataTables_empty {
  232. text-align: center;
  233. }
  234. tfoot input {
  235. margin: 0.5em 0;
  236. width: 100%;
  237. color: #444;
  238. }
  239. tfoot input.search_init {
  240. color: #999;
  241. }
  242. td.group {
  243. background-color: #d1cfd0;
  244. border-bottom: 2px solid #A19B9E;
  245. border-top: 2px solid #A19B9E;
  246. }
  247. td.details {
  248. background-color: #d1cfd0;
  249. border: 2px solid #A19B9E;
  250. }
  251. .example_alt_pagination div.dataTables_info {
  252. width: 40%;
  253. }
  254. .paging_full_numbers {
  255. width: 400px;
  256. height: 22px;
  257. line-height: 22px;
  258. }
  259. .paging_full_numbers a:active {
  260. outline: none
  261. }
  262. .paging_full_numbers a:hover {
  263. text-decoration: none;
  264. }
  265. .paging_full_numbers a.paginate_button,
  266. .paging_full_numbers a.paginate_active {
  267. border: 1px solid #aaa;
  268. -webkit-border-radius: 5px;
  269. -moz-border-radius: 5px;
  270. padding: 2px 5px;
  271. margin: 0 3px;
  272. cursor: pointer;
  273. *cursor: hand;
  274. color: #333 !important;
  275. }
  276. .paging_full_numbers a.paginate_button {
  277. background-color: #ddd;
  278. }
  279. .paging_full_numbers a.paginate_button:hover {
  280. background-color: #ccc;
  281. text-decoration: none !important;
  282. }
  283. .paging_full_numbers a.paginate_active {
  284. background-color: #99B3FF;
  285. }
  286. table.display tr.even.row_selected td {
  287. background-color: #B0BED9;
  288. }
  289. table.display tr.odd.row_selected td {
  290. background-color: #9FAFD1;
  291. }
  292. /*
  293. * Sorting classes for columns
  294. */
  295. /* For the standard odd/even */
  296. tr.odd td.sorting_1 {
  297. background-color: #D3D6FF;
  298. }
  299. tr.odd td.sorting_2 {
  300. background-color: #DADCFF;
  301. }
  302. tr.odd td.sorting_3 {
  303. background-color: #E0E2FF;
  304. }
  305. tr.even td.sorting_1 {
  306. background-color: #EAEBFF;
  307. }
  308. tr.even td.sorting_2 {
  309. background-color: #F2F3FF;
  310. }
  311. tr.even td.sorting_3 {
  312. background-color: #F9F9FF;
  313. }
  314. /* For the Conditional-CSS grading rows */
  315. /*
  316. Colour calculations (based off the main row colours)
  317. Level 1:
  318. dd > c4
  319. ee > d5
  320. Level 2:
  321. dd > d1
  322. ee > e2
  323. */
  324. tr.odd.gradeA td.sorting_1 {
  325. background-color: #c4ffc4;
  326. }
  327. tr.odd.gradeA td.sorting_2 {
  328. background-color: #d1ffd1;
  329. }
  330. tr.odd.gradeA td.sorting_3 {
  331. background-color: #d1ffd1;
  332. }
  333. tr.even.gradeA td.sorting_1 {
  334. background-color: #d5ffd5;
  335. }
  336. tr.even.gradeA td.sorting_2 {
  337. background-color: #e2ffe2;
  338. }
  339. tr.even.gradeA td.sorting_3 {
  340. background-color: #e2ffe2;
  341. }
  342. tr.odd.gradeC td.sorting_1 {
  343. background-color: #c4c4ff;
  344. }
  345. tr.odd.gradeC td.sorting_2 {
  346. background-color: #d1d1ff;
  347. }
  348. tr.odd.gradeC td.sorting_3 {
  349. background-color: #d1d1ff;
  350. }
  351. tr.even.gradeC td.sorting_1 {
  352. background-color: #d5d5ff;
  353. }
  354. tr.even.gradeC td.sorting_2 {
  355. background-color: #e2e2ff;
  356. }
  357. tr.even.gradeC td.sorting_3 {
  358. background-color: #e2e2ff;
  359. }
  360. tr.odd.gradeX td.sorting_1 {
  361. background-color: #ffc4c4;
  362. }
  363. tr.odd.gradeX td.sorting_2 {
  364. background-color: #ffd1d1;
  365. }
  366. tr.odd.gradeX td.sorting_3 {
  367. background-color: #ffd1d1;
  368. }
  369. tr.even.gradeX td.sorting_1 {
  370. background-color: #ffd5d5;
  371. }
  372. tr.even.gradeX td.sorting_2 {
  373. background-color: #ffe2e2;
  374. }
  375. tr.even.gradeX td.sorting_3 {
  376. background-color: #ffe2e2;
  377. }
  378. tr.odd.gradeU td.sorting_1 {
  379. background-color: #c4c4c4;
  380. }
  381. tr.odd.gradeU td.sorting_2 {
  382. background-color: #d1d1d1;
  383. }
  384. tr.odd.gradeU td.sorting_3 {
  385. background-color: #d1d1d1;
  386. }
  387. tr.even.gradeU td.sorting_1 {
  388. background-color: #d5d5d5;
  389. }
  390. tr.even.gradeU td.sorting_2 {
  391. background-color: #e2e2e2;
  392. }
  393. tr.even.gradeU td.sorting_3 {
  394. background-color: #e2e2e2;
  395. }
  396. /*
  397. * Row highlighting example
  398. */
  399. .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
  400. background-color: #ECFFB3;
  401. }
  402. .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
  403. background-color: #E6FF99;
  404. }
  405. .ex_highlight_row #example tr.even:hover {
  406. background-color: #ECFFB3;
  407. }
  408. .ex_highlight_row #example tr.even:hover td.sorting_1 {
  409. background-color: #DDFF75;
  410. }
  411. .ex_highlight_row #example tr.even:hover td.sorting_2 {
  412. background-color: #E7FF9E;
  413. }
  414. .ex_highlight_row #example tr.even:hover td.sorting_3 {
  415. background-color: #E2FF89;
  416. }
  417. .ex_highlight_row #example tr.odd:hover {
  418. background-color: #E6FF99;
  419. }
  420. .ex_highlight_row #example tr.odd:hover td.sorting_1 {
  421. background-color: #D6FF5C;
  422. }
  423. .ex_highlight_row #example tr.odd:hover td.sorting_2 {
  424. background-color: #E0FF84;
  425. }
  426. .ex_highlight_row #example tr.odd:hover td.sorting_3 {
  427. background-color: #DBFF70;
  428. }
  429. /*
  430. * KeyTable
  431. */
  432. table.KeyTable td {
  433. border: 3px solid transparent;
  434. }
  435. table.KeyTable td.focus {
  436. border: 3px solid #3366FF;
  437. }
  438. table.display tr.gradeA {
  439. background-color: #eeffee;
  440. }
  441. table.display tr.gradeC {
  442. background-color: #ddddff;
  443. }
  444. table.display tr.gradeX {
  445. background-color: #ffdddd;
  446. }
  447. table.display tr.gradeU {
  448. background-color: #ddd;
  449. }
  450. div.box {
  451. height: 100px;
  452. padding: 10px;
  453. overflow: auto;
  454. border: 1px solid #8080FF;
  455. background-color: #E5E5FF;
  456. }
  457. /*****************************************************************************************
  458. **********************************PRICE TABLES CONFIGURATION******************************
  459. *****************************************************************************************/
  460. #hosting-table {
  461. width: 100%;
  462. height: 100%;
  463. font-size: 12px;
  464. color:#787878;
  465. margin-bottom:15px;
  466. }
  467. #hosting-table .clear {
  468. clear:both;
  469. }
  470. #hosting-table > div
  471. {
  472. margin-bottom:5em;
  473. }
  474. /* ---- Lists ---- */
  475. #hosting-table ul {
  476. margin: 0;
  477. padding: 0;
  478. list-style-type: none;
  479. }
  480. #hosting-table ul li {
  481. margin: 0;
  482. position:relative;
  483. padding:1em .3em;
  484. list-style-type: none;
  485. }
  486. #hosting-table ul {
  487. position:relative;
  488. border-bottom:10px solid #000;
  489. }
  490. #hosting-table .column li {
  491. min-height:1em;
  492. color:#000;
  493. background:#e6e6e6;
  494. border-right:1px solid #b6b6b6;
  495. border-bottom:1px solid #b6b6b6;
  496. }
  497. #hosting-table .column ul li:first-child {
  498. padding: .5em .3em .8em;
  499. font-size: 13px;
  500. font-weight: 100;
  501. color: #ffffff;
  502. background:#353535;
  503. /* W3C */
  504. /* IE5.5 - 7 */
  505. /* IE8 */
  506. /* IE9 */
  507. /* Firefox */
  508. /* Opera 11 */
  509. /* Chrome 11 */
  510. /* Chrome 10, Safari */
  511. *border-left-style: none;
  512. border-left-color: inherit;
  513. border-left-width: medium;
  514. border-bottom-style: none;
  515. border-bottom-color: inherit;
  516. border-bottom-width: medium;
  517. }
  518. #hosting-table .column li:after {
  519. position:absolute;
  520. content:'/';
  521. font-size:12px;
  522. overflow:hidden;
  523. left:12px;
  524. top:10px;
  525. }
  526. #hosting-table .column:first-child ul {
  527. border-left:1px solid #b6b6b6;
  528. }
  529. #hosting-table .column ul li:first-child:after {
  530. display:none;
  531. }
  532. #hosting-table .column li:first-child {
  533. border-right:1px solid transparent;
  534. }
  535. #hosting-table .column .header_row:after {
  536. display:none;
  537. }
  538. #hosting-table .header_row span {
  539. color:#fff;
  540. font-size:12px;
  541. }
  542. /* --- heading --- */
  543. #hosting-table .column h1 {
  544. text-transform:uppercase;
  545. font-size:15px;
  546. font-weight: bolder;
  547. line-height:1.3em;
  548. color:#fff;
  549. }
  550. /* ---- footer row ---- */
  551. #hosting-table .column .footer_row{
  552. height: 80px;
  553. display: block;
  554. padding: 2em 0 .2em 0;
  555. text-align: center;
  556. /* IE5.5 - 7 */
  557. /* IE8 */
  558. /* IE9 */
  559. /* Firefox */
  560. /* Opera 11 */
  561. /* Chrome 11 */
  562. /* Chrome 10, Safari */
  563. }
  564. #hosting-table .column .footer_row:after {
  565. display:none;
  566. }
  567. /* ---- hover ---- */
  568. #hosting-table .column:hover {
  569. -moz-transform: scale(1.15);
  570. -webkit-transform: scale(1.15);
  571. -o-transform:scale(1.15);
  572. -moz-transition:all .2s linear 0s;
  573. -webkit-transition:all .2s linear 0s;
  574. -o-transition:all .2s linear 0s;
  575. z-index:5;
  576. }
  577. #hosting-table .column:hover ul li.header_row,
  578. #hosting-table .column:hover ul li:first-child {
  579. border-left: 1px solid transparent;
  580. border-left: none \0/;
  581. *border-left: none;
  582. }
  583. #hosting-table .column:hover:first-child ul {
  584. border-left: none;
  585. border-left: 1px solid #B6B6B6 \0/;
  586. *border-left: 1px solid #B6B6B6;
  587. }
  588. #hosting-table .column:hover ul li {
  589. border-left: 1px solid #B6B6B6;
  590. border-left: none \0/;
  591. *border-left: none;
  592. }
  593. #hosting-table .column .header_row {
  594. height:6em;
  595. display:block;
  596. border-right:1px solid transparent;
  597. *border-right:none;
  598. padding:.7em 0 .5em 0;
  599. text-align:center;
  600. }
  601. #hosting-table .column {
  602. text-align:center;
  603. position:relative;
  604. }
  605. /* ---- button ---- */
  606. #hosting-table .hosting-button {
  607. -moz-border-radius:8px;
  608. -webkit-border-radius:8px;
  609. border-radius:8px;
  610. text-decoration:none;
  611. display:inline-block;
  612. padding:.7em 1.8em 1em 1.8em;
  613. padding:.7em 1.8em .6em 1.8em \0/;
  614. *padding:.7em 1.8em .6em 1.8em;
  615. font-size:16px;
  616. color:#fff;
  617. position:relative;
  618. }
  619. /* --- button active --- */
  620. #hosting-table .column:hover .hosting-button:active {
  621. top:3px;
  622. -moz-transition:all .2ms ease-in-out 0s;
  623. -webkit-transition:all .2ms ease-in-out 0s;
  624. -o-transition:all .2ms ease-in-out 0s;
  625. }
  626. /* ---- bubble tooltip ----*/
  627. #hosting-table a.tt {
  628. position:relative;
  629. z-index:24;
  630. font-size:10px;
  631. color: #8e8b8b;
  632. text-decoration:none;
  633. }
  634. #hosting-table a.tt span { display: none; }
  635. #hosting-table a.tt:hover { z-index:25; color: #000;}
  636. #hosting-table a.tt:hover span.tooltip {
  637. display:block;
  638. position:absolute;
  639. bottom:0;
  640. *bottom:-10px;
  641. left:-44px;
  642. width:200px;
  643. color: #787878;
  644. text-align: center;
  645. filter: alpha(opacity:95);
  646. KHTMLOpacity: 0.95;
  647. MozOpacity: 0.95;
  648. opacity: 0.95;
  649. }
  650. #hosting-table a.tt:hover span.triangle-obtuse {
  651. display:block;
  652. position:relative;
  653. padding:8px;
  654. margin:1em 0 3em;
  655. color:#333;
  656. background:#fff;
  657. /* css3 */
  658. -webkit-border-radius:5px;
  659. -moz-border-radius:5px;
  660. border-radius:5px;
  661. }
  662. #hosting-table a.tt:hover span.triangle-obtuse:before {
  663. content:"";
  664. position:absolute;
  665. bottom:-9px; /* value = - border-top-width - border-bottom-width */
  666. left:39px; /* controls horizontal position */
  667. border-width:10px 10px 0;
  668. border-style:solid;
  669. border-color:#fff transparent;
  670. /* reduce the damage in FF3.0 */
  671. display:block;
  672. width:0;
  673. }
  674. /* creates the narrower right-angled triangle */
  675. #hosting-table a.tt:hover span.triangle-obtuse:after {
  676. content:"";
  677. position:absolute;
  678. bottom:-9px; /* value = - border-top-width - border-bottom-width */
  679. left:40px; /* value = (:before left) + (:before border-left) - (:after border-left) */
  680. border-width:10px 10px 0;
  681. border-style:solid;
  682. border-color:#fff transparent;
  683. /* reduce the damage in FF3.0 */
  684. display:block;
  685. width:0;
  686. }
  687. /* =============== STYLE 4 =============== */
  688. #hosting-table .table_style4 .column .header_row {
  689. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b2c831', endColorstr='#a9c600'); /* IE5.5 - 7 */
  690. background: -ms-linear-gradient(top, #b2c831, #a9c600); /* IE9 */
  691. background: -moz-linear-gradient(top, #b2c831, #a9c600); /* Firefox */
  692. background: -o-linear-gradient(top, #b2c831, #a9c600); /* Opera 11 */
  693. background: -webkit-linear-gradient(top, #b2c831, #a9c600); /* Chrome 11 */
  694. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b2c831), color-stop(1, #a9c600)); /* Chrome 10, Safari */
  695. }
  696. #hosting-table .table_style4 .column:hover ul li.header_row {
  697. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a958e', endColorstr='#3d4f49'); /* IE5.5 - 7 */
  698. background-size: 40px 40px;
  699. display:block;
  700. background-color: #fa1d2d;
  701. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  702. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  703. transparent 75%, transparent);
  704. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  705. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  706. transparent 75%, transparent);
  707. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  708. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  709. transparent 75%, transparent);
  710. background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
  711. transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
  712. transparent 75%, transparent);
  713. }
  714. /* ---- button ---- */
  715. #hosting-table .table_style4 .hosting-button {
  716. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b2c831', endColorstr='#a9c600'); /* IE5.5 - 7 */
  717. background: -ms-linear-gradient(top, #b2c831, #a9c600); /* IE9 */
  718. background: -moz-linear-gradient(top, #b2c831, #a9c600); /* Firefox */
  719. background: -o-linear-gradient(top, #b2c831, #a9c600); /* Opera 11 */
  720. background: -webkit-linear-gradient(top, #b2c831, #a9c600); /* Chrome 11 */
  721. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b2c831), color-stop(1, #a9c600)); /* Chrome 10, Safari */
  722. -moz-box-shadow:inset 0 -5px 0 #cada69;
  723. -webkit-box-shadow:inset 0 -5px 0 #cada69;
  724. box-shadow:inset 0 -5px 0 #cada69;
  725. }
  726. /* --- button hover --- */
  727. #hosting-table .table_style4 .column:hover ul li a.hosting-button {
  728. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a958e', endColorstr='#3d4f49'); /* IE5.5 - 7 */
  729. background: -ms-linear-gradient(top, #6a958e, #3d4f49); /* IE9 */
  730. background: -moz-linear-gradient(top, #6a958e, #3d4f49); /* Firefox */
  731. background: -o-linear-gradient(top, #6a958e, #3d4f49); /* Opera 11 */
  732. background: -webkit-linear-gradient(top, #6a958e, #3d4f49); /* Chrome 11 */
  733. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6a958e), color-stop(1, #3d4f49)); /* Chrome 10, Safari */
  734. -moz-box-shadow:inset 0 -5px 0 #25352f;
  735. -webkit-box-shadow:inset 0 -5px 0 #25352f;
  736. box-shadow:inset 0 -5px 0 #25352f;
  737. }
  738. /* --- button active --- */
  739. #hosting-table .table_style4 .column:hover .hosting-button:active {
  740. -moz-box-shadow:inset 0 -1px 0 #25352f;
  741. -webkit-box-shadow:inset 0 -1px 0 #25352f;
  742. box-shadow:inset 0 -1px 0 #25352f;
  743. }