examples.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. .main-header {
  2. position: fixed;
  3. width: 100%;
  4. }
  5. .examples-container {
  6. background-color: #f9f9f9;
  7. margin-top: 60px;
  8. overflow: auto;
  9. }
  10. #charts-list {
  11. margin: 0;
  12. padding: 0 20px;
  13. list-style: none;
  14. overflow: inherit;
  15. background-color: #f9f9f9;
  16. }
  17. h3.category-title {
  18. margin-top: 10px;
  19. height: 40px;
  20. line-height: 40px;
  21. margin-bottom: 0;
  22. margin-left: 2px;
  23. color: #555555
  24. }
  25. @media (min-width: 1400px) {
  26. .col-xlg-2 {
  27. width: 16.66666667%;
  28. padding-bottom: 5px;
  29. }
  30. }
  31. #charts-list .chart {
  32. width: 100%;
  33. max-width: 260px;
  34. margin: 4px auto;
  35. -webkit-border-radius: 2px;
  36. border-radius: 2px;
  37. background: #fff;
  38. box-shadow: 0 0 3px rgba(150, 150, 150, 0.5);
  39. -webkit-box-shadow: 0 0 3px rgba(150, 150, 150, 0.5);
  40. }
  41. #charts-list .chart:hover, #charts-list .chart:focus {
  42. transform: scale(1.1);
  43. z-index: 100;
  44. -webkit-transform: scale(1.1);
  45. transition-duration: .4s;
  46. box-shadow: 1px 1px 6px rgba(150, 150, 150, 0.6);
  47. -webkit-box-shadow: 1px 1px 6px rgba(150, 150, 150, 0.6);
  48. }
  49. #charts-list .chart .chart-link {
  50. position: relative;
  51. display: block;
  52. }
  53. #charts-list .chart .chart-link .chart-title {
  54. color: #2c3b41;
  55. text-align: center;
  56. padding: 2px;
  57. overflow: hidden;
  58. height: 36px;
  59. line-height: 36px;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. margin: 0;
  63. font-weight: normal;
  64. }
  65. #charts-list .chart .chart-link .chart-thumb {
  66. width: 100%;
  67. }
  68. .box {
  69. box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  70. }
  71. .box.box-default {
  72. border: 0;
  73. margin-bottom: 20px;
  74. padding-top: 45px;
  75. background-color: #f9f9f9;
  76. border-top: 1px solid #3c8dbc;
  77. }
  78. .box-title {
  79. padding-top: 10px;
  80. padding-bottom: 0;
  81. color: #111111;
  82. font-family: 'Microsoft Yahei';
  83. }
  84. .box-header {
  85. padding-top: 10px;
  86. padding-bottom: 5px;
  87. padding-left: 0;
  88. background-color: #f9f9f9;
  89. }
  90. .box-body {
  91. background-color: #f9f9f9;
  92. padding-top: 5px;
  93. }
  94. .nav > li > a:hover, .nav > li > a:active, .nav > li > a:focus {
  95. background: #3c8dbc;
  96. }
  97. .category {
  98. padding-top: 40px;
  99. }
  100. /*****/
  101. .my-item {
  102. display: inline-block;
  103. vertical-align: top;
  104. margin: 2px 5px;
  105. text-align: center;
  106. cursor: pointer;
  107. }
  108. .my-itemIcon {
  109. display: inline-block;
  110. position: relative;
  111. height: auto;
  112. width: 30px;
  113. border-radius: 4px;
  114. color: #edffff;
  115. cursor: pointer;
  116. box-sizing: border-box;
  117. }
  118. .my-item:hover {
  119. background-color: #FFFFFF;
  120. }
  121. .my-toolbar{
  122. display: none;
  123. position: absolute;
  124. padding: 2px 5px;
  125. margin: 5px;
  126. left: 0px;
  127. top: 0px;
  128. }
  129. .my-itemDropDown{
  130. display: block;
  131. position: absolute;
  132. top: auto;
  133. box-sizing: content-box;
  134. left: 0px;
  135. width: 40px;
  136. margin-top: 5px;
  137. background-color: rgba(149, 146, 146, 0.75);
  138. border: 1px solid #444;
  139. padding: 6px;
  140. overflow: hidden;
  141. border-radius: 10px;
  142. }
  143. .includeSlider{
  144. display: block;
  145. box-sizing: content-box;
  146. width: 200px;
  147. margin-top: 25px;
  148. }
  149. .includeSlider:after{
  150. content: attr(name);
  151. color: black;
  152. position: absolute;
  153. left: -50px;
  154. top: -10px;
  155. white-space: nowrap;
  156. }
  157. .mytool{
  158. display: none;
  159. position: absolute;
  160. box-sizing: content-box;
  161. top:30px;
  162. right: 50px;
  163. }
  164. .mySliderNum{
  165. position: absolute;
  166. margin-top: 10px;
  167. margin-left: 210px;
  168. bottom: -10px;
  169. color: black;
  170. }
  171. #hypToolbar{
  172. margin: 5px;
  173. padding: 2px 5px;
  174. position: absolute;
  175. top: 0px;
  176. right: 20px;
  177. display: none;
  178. }
  179. .triangle-isosceles {
  180. position: absolute;;
  181. top: 10px;
  182. padding: 15px;
  183. margin: 1em 0 3em;
  184. color: #000;
  185. background: #f3961c;
  186. background: -webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
  187. background: -moz-linear-gradient(#f9d835, #f3961c);
  188. background: -o-linear-gradient(#f9d835, #f3961c);
  189. background: linear-gradient(#f9d835, #f3961c);
  190. -webkit-border-radius: 10px;
  191. -moz-border-radius: 10px;
  192. border-radius: 10px;
  193. }
  194. .word {
  195. display: block;
  196. -webkit-margin-before: 1em;
  197. -webkit-margin-after: 1em;
  198. -webkit-margin-start: 0px;
  199. -webkit-margin-end: 0px;
  200. font-size: smaller;
  201. }
  202. .triangle-isosceles:after {
  203. content: "";
  204. position: absolute;
  205. bottom: -15px;
  206. left: 50px;
  207. border-width: 15px 15px 0;
  208. border-style: solid;
  209. border-color: #f3961c transparent;
  210. display: block;
  211. width: 0;
  212. }
  213. .example-right {
  214. text-align:center;
  215. position: absolute;
  216. padding: 15px 30px;
  217. margin: 0;
  218. color: #fff;
  219. background: #5a8f00;
  220. background: -webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00));
  221. background: -moz-linear-gradient(#b8db29, #5a8f00);
  222. background: -o-linear-gradient(#b8db29, #5a8f00);
  223. background: linear-gradient(rgba(7,86,152,0.3), rgba(46,136,196,0.3));
  224. -webkit-border-radius: 10px;
  225. -moz-border-radius: 10px;
  226. border-radius: 10px;
  227. max-width : 330px;
  228. max-height: 450px;
  229. }
  230. .example-right:after {
  231. content: "";
  232. position: absolute;
  233. bottom: -50px;
  234. left: 50px;
  235. border-width: 0 20px 50px 0px;
  236. border-style: solid;
  237. border-color: transparent rgba(46,136,196,0.3);
  238. display: block;
  239. width: 0;
  240. }
  241. .checkbox label:after,
  242. .radio label:after {
  243. content: '';
  244. display: table;
  245. clear: both;
  246. }
  247. .checkbox .cr,
  248. .radio .cr {
  249. position: relative;
  250. display: inline-block;
  251. border: 1px solid #a9a9a9;
  252. border-radius: .25em;
  253. width: 1.3em;
  254. height: 1.3em;
  255. float: left;
  256. margin-right: .5em;
  257. }
  258. .radio .cr {
  259. border-radius: 50%;
  260. }
  261. .checkbox .cr .cr-icon,
  262. .radio .cr .cr-icon {
  263. position: absolute;
  264. font-size: .8em;
  265. line-height: 0;
  266. top: 50%;
  267. left: 20%;
  268. }
  269. .radio .cr .cr-icon {
  270. margin-left: 0.04em;
  271. }
  272. .checkbox label input[type="checkbox"],
  273. .radio label input[type="radio"] {
  274. display: none;
  275. }
  276. .checkbox label input[type="checkbox"] + .cr > .cr-icon,
  277. .radio label input[type="radio"] + .cr > .cr-icon {
  278. transform: scale(3) rotateZ(-20deg);
  279. opacity: 0;
  280. transition: all .3s ease-in;
  281. }
  282. .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
  283. .radio label input[type="radio"]:checked + .cr > .cr-icon {
  284. transform: scale(1) rotateZ(0deg);
  285. opacity: 1;
  286. }
  287. .checkbox label input[type="checkbox"]:disabled + .cr,
  288. .radio label input[type="radio"]:disabled + .cr {
  289. opacity: .5;
  290. }
  291. .selectContainer{
  292. }
  293. .selectContainer::before{
  294. content: attr(name);
  295. color: black;
  296. position: absolute;
  297. left: -37%;
  298. white-space: nowrap;
  299. }
  300. #progressBar {
  301. width: 400px;
  302. height: 22px;
  303. border: 1px solid #111;
  304. background-color: #dad5d5;
  305. }
  306. #progressBar div {
  307. height: 100%;
  308. color: #fff;
  309. text-align: right;
  310. line-height: 22px;
  311. width: 0;
  312. background-color: #0099ff;
  313. }
  314. .jquery-ui-like {
  315. border-radius: 4px;
  316. background: #FFF;
  317. border: 1px solid #AAA;
  318. overflow: hidden;
  319. }
  320. .jquery-ui-like div {
  321. background-image: url(../images/pbar-ani.gif);
  322. border-right: 1px solid #AAA;
  323. }