_variables.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. // ================================================================================================
  2. // File Name: variables.scss
  3. // Description: Custom component variable
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy - Vuejs, React, Angular, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ================================================================================================
  9. // ================================================================================================
  10. // WARNING: PLEASE DO NOT CHANGE THIS VARIABLE FILE.
  11. // THIS FILE WILL GET OVERWRITTEN WITH EACH VUEXY HTML TEMPLATE RELEASE.
  12. // TIP:
  13. // We suggest you to use this (assets/scss/variables/_variables-components.scss) file for overriding components variables.
  14. // ================================================================================================
  15. $base-font-size: 14px !default;
  16. $body-direction: ltr !default; // Default ltr, change it to rtl for Right To Left support.
  17. $content-padding: 2rem !default;
  18. // ------------------------------
  19. // Colors
  20. // ------------------------------
  21. $nav-component-border-color: #ddd !default;
  22. $swiper-bg: #f2f4f4 !default;
  23. // ------------------------------
  24. // Navbar
  25. // ------------------------------
  26. $navbar-height: 4.45rem !default;
  27. $horizontal-menu-height: 4.45rem !default;
  28. $footer-height: 3.35rem !default;
  29. // ------------------------------
  30. // Main Menu
  31. // ------------------------------
  32. //main menu dark
  33. $menu-dark-color: #dcdcdc !default;
  34. $menu-dark-bg-color: #10163a !default;
  35. $menu-padding: 10px 15px 10px 15px !default;
  36. $menu-second-level-padding: 10px 15px 10px 20px !default;
  37. $menu-third-level-padding: 10px 15px 10px 53px !default;
  38. $menu-forth-level-padding: 10px 15px 10px 53px !default;
  39. // vertical menu
  40. $menu-expanded-width: 260px !default;
  41. $menu-collapsed-width: 80px !default;
  42. // ------------------------------
  43. // Sidebar
  44. // -------------------------------
  45. $sidebar-width: 260px !default;
  46. $chat-sidebar-width: 360px !default;
  47. // -------------------------------
  48. // Avatar
  49. // -------------------------------
  50. $avatar-size: 32px !default;
  51. $avatar-status-size: 11px !default;
  52. $avatar-status-size-lg: 17px !default;
  53. $avatar-size-xl: 70px !default;
  54. $avatar-size-lg: 50px !default;
  55. $avatar-size-sm: 24px !default;
  56. $avatar-bg: #c3c3c3;
  57. $avatar-group-border: $white;
  58. // -------------------------------
  59. // Progress
  60. // -------------------------------
  61. $progress-size-xl: 1.14rem !default;
  62. $progress-size-lg: 0.857rem !default;
  63. $progress-size-md: 0.57rem !default;
  64. $progress-size-sm: 0.143rem !default;
  65. // -------------------------------
  66. // Form
  67. // -------------------------------
  68. // $input-height, $input-height-lg, $input-height-sm are in variables
  69. $font-size-xs: 0.75rem !default;
  70. $font-size-xl: ($font-size-base + 0.5) !default;
  71. $line-height-xl: 1.7 !default;
  72. $line-height-xs: 1.5 !default;
  73. $input-padding-y-xl: 0.5rem !default;
  74. $input-padding-x-xl: 0.5rem !default;
  75. $input-padding-y-xs: 0.2rem !default;
  76. $input-padding-x-xs: 0.275rem !default;
  77. $border-radius-xl: 0.35rem !default;
  78. $border-radius-xs: 0.12rem !default;
  79. $input-border-radius-xl: $border-radius-xl !default;
  80. $input-border-radius-xs: $border-radius-xs !default;
  81. $input-height-xl: (($font-size-xl * $line-height-xl) + ($input-padding-y-xl * 2)) !default;
  82. $input-height-xs: (($font-size-xs * $line-height-xs) + ($input-padding-y-xs * 2)) !default;
  83. $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2)) !default;
  84. // -------------------------------
  85. // Blank Page Bg Color
  86. // -------------------------------
  87. $blank-bg-color: #eff2f7 !default;
  88. // -------------------------------
  89. // Data Tables Bg Color
  90. // -------------------------------
  91. $datatable-bg-color: #f8f8f8 !default;
  92. // -------------------------------
  93. // Switch
  94. // -------------------------------
  95. $switch-bg-color: #e2e2e2 !default;
  96. $switch-indicator-color: $white !default;
  97. // -------------------------------
  98. // Timeline
  99. // -------------------------------
  100. $timeline-border-color: $border-color !default;
  101. $timeline-point-size: 1.75rem !default;
  102. $timeline-point-indicator-size: 12px !default;
  103. $timeline-point-indicator-color: $primary !default;
  104. $timeline-point-indicator-wrapper-size: 20px !default;
  105. $timeline-item-min-height: 4rem !default;
  106. $timeline-item-icon-font-size: 0.85rem !default;
  107. $timeline-event-time-size: 0.85rem !default;
  108. $timeline-event-time-color: $text-muted !default;