examples.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .main-header {
  2. position: fixed;
  3. width: 100%;
  4. top:0;
  5. }
  6. .examples-container {
  7. background-color: #f9f9f9;
  8. margin-top: 60px;
  9. overflow: auto;
  10. }
  11. #charts-list {
  12. margin: 0;
  13. padding: 0 20px;
  14. list-style: none;
  15. overflow: inherit;
  16. background-color: #f9f9f9;
  17. }
  18. h3.category-title {
  19. margin-top: 0px;
  20. height: 40px;
  21. line-height: 40px;
  22. margin-bottom: 0;
  23. margin-left: 2px;
  24. color: #555555
  25. }
  26. @media (min-width: 1400px) {
  27. .col-xlg-2 {
  28. width: 16.66666667%;
  29. padding-bottom: 5px;
  30. }
  31. }
  32. #charts-list .chart {
  33. width: 100%;
  34. max-width: 260px;
  35. margin: 4px auto;
  36. -webkit-border-radius: 2px;
  37. border-radius: 2px;
  38. background: #fff;
  39. box-shadow: 0 0 3px rgba(150, 150, 150, 0.5);
  40. -webkit-box-shadow: 0 0 3px rgba(150, 150, 150, 0.5);
  41. }
  42. #charts-list .chart:hover, #charts-list .chart:focus {
  43. transform: scale(1.1) translateZ(0);
  44. z-index: 100;
  45. -webkit-transform: scale(1.1) translateZ(0);
  46. transition-duration: .4s;
  47. box-shadow: 1px 1px 6px rgba(150, 150, 150, 0.6);
  48. -webkit-box-shadow: 1px 1px 6px rgba(150, 150, 150, 0.6);
  49. }
  50. #charts-list .chart .chart-link {
  51. position: relative;
  52. display: block;
  53. }
  54. #charts-list .chart .chart-link .chart-title {
  55. color: #2c3b41;
  56. text-align: center;
  57. padding: 2px;
  58. overflow: hidden;
  59. height: 36px;
  60. line-height: 36px;
  61. text-overflow: ellipsis;
  62. white-space: nowrap;
  63. margin: 0;
  64. font-weight: normal;
  65. }
  66. #charts-list .chart .chart-link .chart-thumb {
  67. width: 100%;
  68. }
  69. .box {
  70. box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  71. }
  72. .box.box-default {
  73. border: 0;
  74. margin-bottom: 20px;
  75. padding-top: 45px;
  76. background-color: #f9f9f9;
  77. border-top: 1px solid #e14d57;
  78. }
  79. .box-title {
  80. padding-top: 10px;
  81. padding-bottom: 0;
  82. color: #111111;
  83. font-family: 'Microsoft Yahei';
  84. }
  85. .box-header {
  86. padding-top: 10px;
  87. padding-bottom: 5px;
  88. padding-left: 0;
  89. background-color: #f9f9f9;
  90. }
  91. .box-body {
  92. background-color: #f9f9f9;
  93. padding-top: 5px;
  94. }
  95. .nav > li > a:hover, .nav > li > a:active, .nav > li > a:focus {
  96. background: #e14d57;
  97. }
  98. .category {
  99. padding-top: 60px;
  100. }