Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.57 KB | None | 0 0
  1. .wizard {
  2.     margin: 20px auto;
  3.     background: #fff;
  4. }
  5.  
  6.     .wizard .nav-tabs {
  7.         position: relative;
  8.         margin: 40px auto;
  9.         margin-bottom: 0;
  10.         border-bottom-color: #e0e0e0;
  11.     }
  12.  
  13.     .wizard > div.wizard-inner {
  14.         position: relative;
  15.     }
  16.  
  17. .connecting-line {
  18.     height: 2px;
  19.     background: #e0e0e0;
  20.     position: absolute;
  21.     width: 80%;
  22.     margin: 0 auto;
  23.     left: 0;
  24.     right: 0;
  25.     top: 50%;
  26.     z-index: 1;
  27. }
  28.  
  29. .wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
  30.     color: #555555;
  31.     cursor: default;
  32.     border: 0;
  33.     border-bottom-color: transparent;
  34. }
  35.  
  36. span.round-tab {
  37.     width: 70px;
  38.     height: 70px;
  39.     line-height: 70px;
  40.     display: inline-block;
  41.     border-radius: 100px;
  42.     background: #fff;
  43.     border: 2px solid #e0e0e0;
  44.     z-index: 2;
  45.     position: absolute;
  46.     left: 0;
  47.     text-align: center;
  48.     font-size: 25px;
  49. }
  50. span.round-tab i{
  51.     color:#555555;
  52. }
  53. .wizard li.active span.round-tab {
  54.     background: #fff;
  55.     border: 2px solid #5bc0de;
  56.    
  57. }
  58. .wizard li.active span.round-tab i{
  59.     color: #5bc0de;
  60. }
  61.  
  62. span.round-tab:hover {
  63.     color: #333;
  64.     border: 2px solid #333;
  65. }
  66.  
  67. .wizard .nav-tabs > li {
  68.     width: 25%;
  69. }
  70.  
  71. .wizard li:after {
  72.     content: " ";
  73.     position: absolute;
  74.     left: 46%;
  75.     opacity: 0;
  76.     margin: 0 auto;
  77.     bottom: 0px;
  78.     border: 5px solid transparent;
  79.     border-bottom-color: #5bc0de;
  80.     transition: 0.1s ease-in-out;
  81. }
  82.  
  83. .wizard li.active:after {
  84.     content: " ";
  85.     position: absolute;
  86.     left: 46%;
  87.     opacity: 1;
  88.     margin: 0 auto;
  89.     bottom: 0px;
  90.     border: 10px solid transparent;
  91.     border-bottom-color: #5bc0de;
  92. }
  93.  
  94. .wizard .nav-tabs > li a {
  95.     width: 70px;
  96.     height: 70px;
  97.     margin: 20px auto;
  98.     border-radius: 100%;
  99.     padding: 0;
  100. }
  101.  
  102.     .wizard .nav-tabs > li a:hover {
  103.         background: transparent;
  104.     }
  105.  
  106. .wizard .tab-pane {
  107.     position: relative;
  108.     padding-top: 50px;
  109. }
  110.  
  111. .wizard h3 {
  112.     margin-top: 0;
  113. }
  114.  
  115. @media( max-width : 585px ) {
  116.  
  117.     .wizard {
  118.         width: 90%;
  119.         height: auto !important;
  120.     }
  121.  
  122.     span.round-tab {
  123.         font-size: 16px;
  124.         width: 50px;
  125.         height: 50px;
  126.         line-height: 50px;
  127.     }
  128.  
  129.     .wizard .nav-tabs > li a {
  130.         width: 50px;
  131.         height: 50px;
  132.         line-height: 50px;
  133.     }
  134.  
  135.     .wizard li.active:after {
  136.         content: " ";
  137.         position: absolute;
  138.         left: 35%;
  139.     }
  140. }
  141.  
  142. .mt-3 {
  143.   margin-top: 30px;
  144. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement