themeswitcher.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Theme Switcher */
  2. #theme-options {
  3. position: fixed;
  4. top: 110px;
  5. right: -300px;
  6. z-index: 9999;
  7. width: 300px;
  8. -webkit-transition: transform 0.5s ease;
  9. -o-transition: transform 0.5s ease;
  10. transition: transform 0.5s ease;
  11. }
  12. #theme-options.active {
  13. transform: translateX(-300px);
  14. -ms-transform: translateX(-300px);
  15. -o-transform: translateX(-300px);
  16. -webkit-transform: translateX(-300px);
  17. }
  18. .btn.theme-switcher {
  19. width: 54px;
  20. height: 50px;
  21. line-height: 50px;
  22. display: block;
  23. font-size: 27px;
  24. border-width: 1px;
  25. border-style: solid;
  26. border-right: 0;
  27. border-radius: 0;
  28. border-bottom-left-radius: 3px;
  29. border-top-left-radius: 3px;
  30. text-align: center;
  31. position: absolute;
  32. left: -54px;
  33. top: 25px;
  34. z-index: 55;
  35. padding: 0;
  36. }
  37. .theme-switcher .glyph-icon {
  38. width: 54px;
  39. height: 50px;
  40. line-height: 50px;
  41. display: block;
  42. }
  43. #theme-switcher-wrapper {
  44. background: #fff;
  45. width: 300px;
  46. padding: 0;
  47. border-bottom-left-radius: 3px;
  48. border-top-left-radius: 3px;
  49. position: relative;
  50. z-index: 60;
  51. -webkit-transition: transform 0.5s ease;
  52. -o-transition: transform 0.5s ease;
  53. transition: transform 0.5s ease;
  54. }
  55. #theme-options.active #theme-switcher-wrapper {
  56. box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  57. }
  58. #theme-switcher-wrapper {
  59. max-height: 580px;
  60. }
  61. #theme-switcher-wrapper .header {
  62. background: #FEFEFF;
  63. border-top: #dfe8f1 solid 1px;
  64. border-bottom: #dfe8f1 solid 1px;
  65. text-transform: uppercase;
  66. padding: 13px 15px 10px;
  67. font-size: 12px;
  68. }
  69. #theme-switcher-wrapper .header a {
  70. font-weight: bold;
  71. text-transform: capitalize;
  72. float: right;
  73. }
  74. #theme-switcher-wrapper .header:first-child {
  75. border-top-left-radius: 3px;
  76. }
  77. #theme-switcher-wrapper ul + .header {
  78. border-radius: 0;
  79. }
  80. #theme-switcher-wrapper ul li {
  81. height: 34px;
  82. line-height: 28px;
  83. margin: 5px 0;
  84. padding: 0 15px;
  85. border-bottom: #dfe8f1 solid 1px;
  86. }
  87. #theme-switcher-wrapper ul li:last-child {
  88. border-bottom: 0;
  89. margin-bottom: 0;
  90. }
  91. #theme-switcher-wrapper ul li label {
  92. font-size: 13px;
  93. }
  94. #theme-switcher-wrapper ul li .switch-toggle {
  95. float: right;
  96. margin-top: 3px;
  97. }
  98. .theme-color-wrapper h5 {
  99. text-transform: capitalize;
  100. font-weight: bold;
  101. font-size: 12px;
  102. margin: 0 5px 5px;
  103. }
  104. .theme-color-wrapper {
  105. padding: 10px;
  106. }
  107. .theme-color-wrapper a {
  108. height: 24px;
  109. width: 24px;
  110. display: block;
  111. overflow: hidden;
  112. text-indent: -999em;
  113. float: left;
  114. margin: 2px;
  115. border-radius: 50px;
  116. border: #fff solid 2px !important;
  117. box-shadow: 1px 2px 3px rgba(0,0,0,0.1);
  118. opacity: 0.8;
  119. }
  120. .theme-color-wrapper a:hover,
  121. .theme-color-wrapper a.active {
  122. opacity: 1;
  123. border-color: red !important;
  124. }