demo.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*=========================================================================================
  2. File Name: demo.scss
  3. Description: CSS used for demo purpose only. Remove this css from your project.
  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. // Demo content spacing
  10. .demo-inline-spacing {
  11. display: flex;
  12. flex-wrap: wrap;
  13. justify-content: flex-start;
  14. align-items: center;
  15. & > * {
  16. margin-right: 1.5rem;
  17. margin-top: 1.5rem;
  18. }
  19. }
  20. // Demo content spacing
  21. .demo-vertical-spacing > * {
  22. margin: 0;
  23. margin-bottom: 1.5rem;
  24. &:last-child {
  25. margin: 0;
  26. }
  27. }
  28. .demo-spacing-0 > *:last-child {
  29. margin: 0;
  30. }
  31. // using in icon pages
  32. .icon-wrapper {
  33. .feather {
  34. height: 24px;
  35. width: 24px;
  36. }
  37. }
  38. .scroll-example {
  39. padding: 0.5rem;
  40. position: relative;
  41. border: 2px solid darken($body-bg, 10%);
  42. overflow: auto;
  43. .horz-scroll-content {
  44. width: 1200px;
  45. }
  46. }
  47. .browser {
  48. background: #e0e0e0;
  49. border: 4px solid #e0e0e0;
  50. width: 100%;
  51. height: 12rem;
  52. padding-top: 20px;
  53. margin: 0 0 10px;
  54. -webkit-box-sizing: border-box;
  55. -moz-box-sizing: border-box;
  56. box-sizing: border-box;
  57. }
  58. .browser iframe {
  59. border: 0;
  60. background: #fff;
  61. height: 100%;
  62. width: 100%;
  63. }
  64. .loader-wrapper {
  65. height: 8em;
  66. }
  67. .maintenance-icon {
  68. font-size: 4rem;
  69. }
  70. .animationIcon {
  71. right: 30px;
  72. bottom: 10px;
  73. }
  74. // Breadcrumb page alignment demo
  75. #component-breadcrumbs .breadcrumb:not(last-child) {
  76. margin-bottom: 0.5rem;
  77. }
  78. #breadcrumb-alignment {
  79. .breadcrumb-wrapper {
  80. box-shadow: 1px 1px 10px rgba($black, 0.1);
  81. padding: 1px;
  82. border-radius: $border-radius;
  83. .breadcrumb {
  84. margin-top: 0.8rem;
  85. margin-bottom: 0.8rem;
  86. }
  87. }
  88. }
  89. .dark-layout {
  90. #breadcrumb-alignment {
  91. .breadcrumb-wrapper {
  92. box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.24);
  93. }
  94. }
  95. }
  96. // Buy now
  97. .buy-now {
  98. position: fixed;
  99. bottom: 5%;
  100. right: 79px;
  101. z-index: 1031;
  102. .btn {
  103. box-shadow: 0 1px 20px 1px $danger !important;
  104. &:hover {
  105. box-shadow: none !important;
  106. }
  107. }
  108. }