Broker System for Supercredit
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

141 line
2.6KB

  1. /* Timeline */
  2. .container.outer {
  3. width: 100%;
  4. background: url("../../assets/img/body_bg.jpg") no-repeat center center fixed;
  5. -webkit-background-size: cover;
  6. -moz-background-size: cover;
  7. -o-background-size: cover;
  8. background-size: cover;
  9. opacity: 0.98;
  10. }
  11. .container.inner {
  12. width: 99%;
  13. min-height: calc(100vh - 48px);
  14. /* background-color:chartreuse; */
  15. }
  16. div.divider {
  17. font-family: "Share Tech Mono", monospace;
  18. color: #3f517e;
  19. font-size: 2vh;
  20. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.45);
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. div.divider::before, div.divider::after {
  26. content: "";
  27. display: block;
  28. height: 0.09em;
  29. min-width: 30vw;
  30. }
  31. div.divider::before {
  32. background: linear-gradient(to right, rgba(240, 240, 240, 0), #fff);
  33. margin-right: 4vh;
  34. }
  35. div.divider::after {
  36. background: linear-gradient(to left, rgba(240, 240, 240, 0), #fff);
  37. margin-left: 4vh;
  38. }
  39. /* horizontal divider https://codepen.io/MiKr13/pen/yjaNYp */
  40. .h-divider {
  41. margin: auto;
  42. /* margin-top: 80px; */
  43. width: 80%;
  44. position: relative;
  45. }
  46. .h-divider .shadow {
  47. overflow: hidden;
  48. height: 20px;
  49. }
  50. .h-divider .shadow:after {
  51. content: "";
  52. display: block;
  53. margin: -25px auto 0;
  54. width: 100%;
  55. height: 25px;
  56. border-radius: 125px/12px;
  57. box-shadow: 0 0 8px black;
  58. }
  59. .h-divider .text {
  60. width: 100px;
  61. height: 45px;
  62. padding: 10px;
  63. position: absolute;
  64. bottom: 100%;
  65. margin-bottom: -33px;
  66. left: 50%;
  67. margin-left: -60px;
  68. border-radius: 100%;
  69. box-shadow: 0 2px 4px #999;
  70. background: white;
  71. }
  72. .h-divider .text i {
  73. position: absolute;
  74. top: 4px;
  75. bottom: 4px;
  76. left: 4px;
  77. right: 4px;
  78. border-radius: 100%;
  79. border: 1px dashed #aaa;
  80. text-align: center;
  81. line-height: 50px;
  82. font-style: normal;
  83. color: #999;
  84. }
  85. .h-divider .text2 {
  86. width: 70px;
  87. height: 70px;
  88. position: absolute;
  89. bottom: 100%;
  90. margin-bottom: -35px;
  91. left: 50%;
  92. margin-left: -25px;
  93. border-radius: 100%;
  94. box-shadow: 0 2px 4px #999;
  95. background: white;
  96. }
  97. .h-divider img {
  98. position: absolute;
  99. margin: 4px;
  100. max-width: 60px;
  101. border-radius: 100%;
  102. border: 1px dashed #aaa;
  103. }
  104. /* end of horizontal dividor */
  105. hr {
  106. display: block;
  107. margin: 10px 0 -15px;
  108. width: 100%;
  109. height: 1px;
  110. border: 0;
  111. background-color: rgba(0, 0, 0, 0.35);
  112. }
  113. hr + h2 {
  114. display: inline-block;
  115. position: relative;
  116. left: 50%;
  117. margin: 0;
  118. padding: 5px 10px;
  119. border: 1px solid #453986;
  120. transform: translateX(-50%);
  121. color: #453986;
  122. font-size: 12px;
  123. font-weight: 500;
  124. letter-spacing: 0.32em;
  125. text-align: center;
  126. text-transform: uppercase;
  127. background-color: #fff;
  128. }
  129. hr + h2::first-letter {
  130. margin-left: 0.32em;
  131. }