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.

100 lines
1.4 KiB

2 years ago
  1. #style-switcher {
  2. left: -180px;
  3. position: fixed;
  4. top: 200px;
  5. width: 180px;
  6. z-index: 9999;
  7. background: #fff;
  8. border-radius: 0 0 3px;
  9. box-shadow: 0px 5px 30px 0 rgba(0, 0, 0, 0.2);
  10. -webkit-transition-duration: .7s;
  11. transition-duration: .7s;
  12. }
  13. #style-switcher div {
  14. padding: 5px 10px;
  15. }
  16. #style-switcher h2 {
  17. color: #222;
  18. font-size: 16px;
  19. margin-bottom: 0;
  20. margin-right: 0;
  21. margin-top: 0;
  22. padding: 15px 0px 7px 0px;
  23. text-align: center;
  24. text-transform: uppercase;
  25. }
  26. #style-switcher:hover{
  27. left: 0px;
  28. }
  29. #style-switcher h2 a {
  30. background: #222;
  31. border-radius: 0px 3px 3px 0px;
  32. display: block;
  33. height: 40px;
  34. position: absolute;
  35. right: -40px;
  36. top: 0;
  37. width: 40px;
  38. }
  39. #style-switcher h2 a i {
  40. color: #fff;
  41. font-size: 19px;
  42. left: 12px;
  43. position: absolute;
  44. top: 10px;
  45. }
  46. .colors {
  47. padding-left: 7px;
  48. }
  49. .colors {
  50. list-style: none;
  51. margin: 0px 0px 10px 0px;
  52. overflow: hidden;
  53. }
  54. .colors li {
  55. float: left;
  56. }
  57. .colors li a {
  58. cursor: pointer;
  59. display: block;
  60. height: 30px;
  61. margin: 7px 9px;
  62. width: 30px;
  63. border-radius: 30px;
  64. }
  65. .style1 {
  66. background: #d21e2b;
  67. }
  68. .style2 {
  69. background: #2193f1;
  70. }
  71. .style3 {
  72. background: #2ebf7e;
  73. }
  74. .style4 {
  75. background: #f7c605;
  76. }
  77. .style5 {
  78. background: #38c5a7;
  79. }
  80. .style6 {
  81. background: #2b4fbd;
  82. }