color-switcher-design.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /***
  2. ====================================================================
  3. Color Palate Style / Color Switcher Style
  4. ====================================================================
  5. ***/
  6. .color-palate {
  7. background: #fff none repeat scroll 0 0;
  8. -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  9. -ms-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  10. -o-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  11. -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  12. box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  13. position: fixed;
  14. left: -285px;
  15. text-align: center;
  16. top: 25%;
  17. transition: all 0.5s ease 0s;
  18. width: 285px;
  19. z-index: 999;
  20. }
  21. .color-palate-head {
  22. background: #13b5ea none repeat scroll 0 0;
  23. padding: 12px 0;
  24. }
  25. .color-palate-head h6,
  26. .secondary-head h6 {
  27. color: #ffffff;
  28. font-size: 14px;
  29. font-weight: 400;
  30. margin: 0px;
  31. margin-top: 4px;
  32. text-transform:uppercase;
  33. }
  34. .palate {
  35. background: red none repeat scroll 0 0;
  36. display: block;
  37. float: left;
  38. height: 45px;
  39. margin: 0 2.5% 12px;
  40. width: 20%;
  41. cursor: pointer;
  42. position: relative;
  43. }
  44. .colors-list .active::after{
  45. background: url(../image/tick.png) center center no-repeat !important;
  46. background-repeat: no-repeat;
  47. content: '';
  48. position: absolute;
  49. top: 0px;
  50. left: 0px;
  51. width: 100%;
  52. height: 100%;
  53. }
  54. .various-color {
  55. overflow: hidden;
  56. padding: 25px 0 15px;
  57. }
  58. .colors-list {
  59. margin: 0 20px;
  60. }
  61. .secondary-head {
  62. background: #222222 none repeat scroll 0 0;
  63. padding: 14px 0;
  64. }
  65. .secondary-color {
  66. padding: 23px 0;
  67. }
  68. .secondary-colors-list {
  69. margin: 0 80px;
  70. }
  71. .palate-foo {
  72. color: #777777;
  73. font-size: 13px;
  74. font-weight: 400;
  75. padding: 0px 30px 20px;
  76. line-height:1.8em;
  77. margin-top:16px;
  78. }
  79. .palate-foo span{
  80. display:block;
  81. padding-top:20px;
  82. margin-top:5px;
  83. border-top:1px dotted #b2b2b2;
  84. }
  85. .palate.default-color {
  86. background: #13b5ea none repeat scroll 0 0;
  87. }
  88. .palate.green-color {
  89. background: #2ECC40 none repeat scroll 0 0;
  90. }
  91. .palate.blue-color {
  92. background: #0074D9 none repeat scroll 0 0;
  93. }
  94. .palate.brown-color {
  95. background: #ab8b40 none repeat scroll 0 0;
  96. }
  97. .palate.purple-color {
  98. background: #bb54e1 none repeat scroll 0 0;
  99. }
  100. .palate.teal-color {
  101. background: #14c599 none repeat scroll 0 0;
  102. }
  103. .palate.orange-color {
  104. background: #ff7e00 none repeat scroll 0 0;
  105. }
  106. .palate.redd-color {
  107. background: #FF4136 none repeat scroll 0 0;
  108. }
  109. .palate.olive-color {
  110. background: #3D9970 none repeat scroll 0 0;
  111. }
  112. .palate.yellow-color {
  113. background: #fab82c none repeat scroll 0 0;
  114. }
  115. .palate.pink-color{
  116. background: #ff017e none repeat scroll 0 0;
  117. }
  118. .palate.hotpink-color{
  119. background: #96053e none repeat scroll 0 0;
  120. }
  121. .palate.official-blue{
  122. background: #009bff none repeat scroll 0 0;
  123. }
  124. .color-trigger {
  125. background: #13b5ea none repeat scroll 0 0;
  126. cursor: pointer;
  127. height: 50px;
  128. right: -46px;
  129. position: absolute;
  130. top: 0;
  131. width: 46px;
  132. padding-top: 6px;
  133. }
  134. .color-trigger .fa{
  135. /*-webkit-animation: rotating 2s linear infinite;
  136. animation: rotating 2s linear infinite;*/
  137. }
  138. .color-trigger:before{
  139. content:'';
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:100%;
  144. height:100%;
  145. }
  146. .color-trigger i {
  147. color: #ffffff;
  148. font-size: 18px;
  149. line-height: 40px;
  150. }
  151. .color-palate.visible-palate {
  152. left: 0px;
  153. }
  154. .color-trigger .fa {
  155. -webkit-animation: rotation 2s infinite linear;
  156. }
  157. @-webkit-keyframes rotation {
  158. from {
  159. -webkit-transform: rotate(0deg);
  160. }
  161. to {
  162. -webkit-transform: rotate(359deg);
  163. }
  164. }