Ei kuvausta
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.

_shortcode.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. .section-padding {
  2. padding: 100px 0;
  3. @include respond('tab-land') {
  4. padding: 80px 0;
  5. }
  6. @include respond('tab-port') {
  7. padding: 75px 0;
  8. }
  9. @include respond('phone-land') {
  10. padding: 60px 0;
  11. }
  12. @include respond('phone') {
  13. padding: 50px 0;
  14. }
  15. }
  16. .mt-80 {
  17. margin-top: 80px;
  18. }
  19. .mb-80 {
  20. margin-bottom: 80px;
  21. }
  22. // .vertical-line {
  23. // position : relative;
  24. // min-height : 1000px;
  25. // border-left: 1px solid $border-color;
  26. // z-index : 03;
  27. // &::before {
  28. // content : "";
  29. // position : absolute;
  30. // top : -84px;
  31. // background : $border-color;
  32. // width : 1px;
  33. // height : 100px;
  34. // left : -1px;
  35. // // border-left : 1px solid #f00;
  36. // }
  37. // &::after {
  38. // content : "";
  39. // position : absolute;
  40. // bottom : -84px;
  41. // background: $border-color;
  42. // width : 1px;
  43. // height : 100px;
  44. // left : -1px;
  45. // }
  46. // }
  47. .page-title {
  48. margin-bottom : 30px;
  49. background : transparent;
  50. border-radius : $radius;
  51. // padding : 10px;
  52. .page-title-content {
  53. // margin-top: 15px;
  54. h3 {
  55. font-size : 24px;
  56. margin-bottom: 0px;
  57. }
  58. }
  59. }
  60. .breadcrumbs {
  61. a {
  62. color : $text-muted;
  63. display : inline-block;
  64. // margin-left: 15px;
  65. font-size : 14px;
  66. }
  67. &.active {
  68. a {
  69. color: $white;
  70. }
  71. }
  72. i {
  73. margin : 0px 10px;
  74. font-size : 20px;
  75. line-height: 0;
  76. position : relative;
  77. top : 5px;
  78. }
  79. }
  80. .flex-grow-2 {
  81. flex-grow: 2;
  82. }
  83. // Scrollbar
  84. ::-webkit-scrollbar {
  85. width: 5px;
  86. }
  87. /* Track */
  88. ::-webkit-scrollbar-track {
  89. box-shadow : inset 0 0 5px grey;
  90. border-radius: 10px;
  91. }
  92. /* Handle */
  93. ::-webkit-scrollbar-thumb {
  94. background : #999;
  95. border-radius: 10px;
  96. }
  97. /* Handle on hover */
  98. ::-webkit-scrollbar-thumb:hover {
  99. background: #777;
  100. }
  101. .c-pointer {
  102. cursor: pointer;
  103. }
  104. .trade-balance {
  105. position: relative;
  106. height : 380px;
  107. }
  108. .position-value {
  109. position: relative;
  110. height : 320px;
  111. }
  112. .shadow-sm {
  113. box-shadow: $shadow-sm;
  114. }
  115. .shadow-lg {
  116. box-shadow: $shadow-lg;
  117. }
  118. .section-title {
  119. margin-bottom: 75px;
  120. h2 {
  121. text-align : center;
  122. font-weight: 600
  123. }
  124. }
  125. .auth-bg{
  126. font-size: 100px;
  127. background: url("./../../images/login/auth.jpg");
  128. display: none;
  129. }