customizer.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*=========================================================================================
  2. File Name: customizer.scss
  3. Description: CSS used for demo purpose only. Remove this css from your project.
  4. ----------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. .customizer{
  10. width: 400px;
  11. right: -400px;
  12. padding: 0;
  13. background-color: $white;
  14. z-index: 1051;
  15. position: fixed;
  16. top: 0;
  17. bottom: 0;
  18. height: 100vh;
  19. height: calc(var(--vh, 1vh) * 100);
  20. transition: right 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  21. backface-visibility: hidden;
  22. border-left: 1px solid rgba(0, 0, 0, 0.05);
  23. box-shadow:0 15px 30px 0 rgba(0,0,0,.11), 0 5px 15px 0 rgba(0,0,0,.08);
  24. &.open{
  25. right: 0;
  26. }
  27. // customizer content height
  28. .customizer-content{
  29. position: relative;
  30. height: 100%;
  31. }
  32. //customizer close button
  33. .customizer-close{
  34. position: absolute;
  35. right: 30px;
  36. top: 20px;
  37. padding: 7px;
  38. width: auto;
  39. z-index: 10;
  40. color: #626262;
  41. i{
  42. font-size: 1.71rem;
  43. }
  44. }
  45. // customizer toggle icon
  46. .customizer-toggle{
  47. background: $primary;
  48. color: $white;
  49. display: block;
  50. box-shadow: -3px 0px 8px rgba(0, 0, 0, 0.1);
  51. border-top-left-radius: 6px;
  52. border-bottom-left-radius: 6px;
  53. position: absolute;
  54. top: 50%;
  55. width: 38px;
  56. height: 38px;
  57. left: -39px;
  58. text-align: center;
  59. line-height: 40px;
  60. cursor: pointer;
  61. }
  62. // theme color box styles
  63. .color-box{
  64. height: 35px;
  65. width: 35px;
  66. margin: .5rem;
  67. border-radius: .5rem;
  68. cursor: pointer;
  69. &.selected{
  70. box-shadow: 0 0 0 3px rgba(52,144,220,.5);
  71. }
  72. }
  73. }
  74. body.dark-layout{
  75. .hide-scroll-top-switch,
  76. .collapse-sidebar {
  77. .custom-switch{
  78. .custom-control-label{
  79. &:before{
  80. background-color: #10163a;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. .buy-now {
  87. position: fixed;
  88. bottom: 5%;
  89. right: 79px;
  90. z-index: 1031;
  91. .btn{
  92. box-shadow: 0 1px 20px 1px $danger !important;
  93. &:hover{
  94. box-shadow: none !important;
  95. }
  96. }
  97. }