Advertisement
Guest User

Untitled

a guest
Dec 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 1.75 KB | None | 0 0
  1. html {
  2.     font-size: 10px;
  3. }
  4.  
  5. body {
  6.     background: $white;
  7.     font-family: $font;
  8.     font-weight: 300;
  9.     color: $font-color;
  10.  
  11.     @media screen and(min-width:992px) {
  12.         overflow: hidden;
  13.     }
  14. }
  15.  
  16. .page {
  17.     height: 100%;
  18. }
  19.  
  20. .content-right {
  21.     background-color: $black;
  22. }
  23.  
  24. .panel {
  25.     box-shadow: none;
  26.     border: none;
  27. }
  28.  
  29. .panel .panel-default {
  30.     position: relative;
  31. }
  32.  
  33. .panel-default>.panel-heading {
  34.     background-color: transparent;
  35.     border-color: transparent;
  36. }
  37.  
  38. .panel-group .panel-heading+.panel-collapse>.panel-body,
  39. .panel-group .panel-heading+.panel-collapse>.list-group {
  40.     border-top: none;
  41.     position: relative;
  42. }
  43.  
  44. .panel-title>a {
  45.     text-decoration: none;
  46. }
  47.  
  48. .panel-number {
  49.     margin-right: 30px;
  50.     height: 40px;
  51.     position: relative;
  52.  
  53.     &::after {
  54.         content: '';
  55.         height: 100%;
  56.         position: absolute;
  57.         left: 30px;
  58.         top: 0;
  59.         width: 1px;
  60.         background-color: $line;
  61.     }
  62. }
  63.  
  64. .collapse.in {
  65.     position: relative;
  66.     left: -30%;
  67.     right: 0;
  68.     top: 0;
  69.     background: green;
  70.     width: 150%;
  71.     z-index: 0;
  72.  
  73.     &::before {
  74.         content: '';
  75.         background-color: green;
  76.         width: 100vw;
  77.         position: absolute;
  78.         z-index: 0;
  79.         left: -100%;
  80.         height: 100%;
  81.     }
  82.  
  83. }
  84.  
  85. .collapsing {
  86.     position: relative;
  87.     left: -100%;
  88.     right: 0;
  89.     top: 0;
  90.     background: green;
  91.     width: 150%;
  92.     z-index: 0;
  93.  
  94.     &::before {
  95.         content: '';
  96.         background-color: green;
  97.         width: 100vw;
  98.         position: absolute;
  99.         z-index: 0;
  100.         left: -100%;
  101.         height: 100%;
  102.     }
  103. }
  104.  
  105. .panel-body {
  106.     width: 50%;
  107.     margin: 0 auto;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement