Advertisement
Guest User

Abrand T096

a guest
Apr 1st, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.94 KB | None | 0 0
  1. <style>
  2.     : root {
  3.         --gutter: 20px;
  4.     }
  5.  
  6.     .stories {
  7.         padding: var(--gutter) 0;
  8.         display: grid;
  9.         grid-gap: var(--gutter) 0;
  10.         grid-template-columns: var(--gutter) 1fr var(--gutter);
  11.         align-content: start;
  12.         overflow-y: scroll;
  13.         height: 105px;
  14.     }
  15.  
  16.     .stories > * {
  17.         grid-column: 2 / -2;
  18.     }
  19.  
  20.     .stories > .full {
  21.         grid-column: 1 / -1;
  22.         padding-top: 5px;
  23.     }
  24.  
  25.     .hs {
  26.         display: grid;
  27.         grid-gap: calc(var(--gutter) / 2);
  28.         grid-template-columns: 10px;
  29.         grid-template-rows: minmax(100px, 1fr);
  30.         grid-auto-flow: column;
  31.         grid-auto-columns: calc(50% - var(--gutter) * 2);
  32.  
  33.         overflow-x: scroll;
  34.         scroll-snap-type: x proximity;
  35.         padding-bottom: calc(0.75 * var(--gutter));
  36.         margin-bottom: calc(-0.25 * var(--gutter));
  37.     }
  38.  
  39.     .hs:before,
  40.     .hs:after {
  41.         content: "";
  42.         width: 10px;
  43.     }
  44.  
  45.     li.item {
  46.         width: 65px;
  47.         margin: 10px 12% 0px 12%;
  48.         text-align: center;
  49.         text-transform: uppercase;
  50.         font-size: 10px;
  51.     }
  52.  
  53.     li.item img {
  54.         width: 60px;
  55.         height: 60px;
  56.         margin: 0 auto;
  57.         margin-bottom: 10px;
  58.     }
  59.  
  60.     .no-scrollbar {
  61.         scrollbar-width: none;
  62.         margin-bottom: 0;
  63.         padding-bottom: 0;
  64.     }
  65.     .no-scrollbar::-webkit-scrollbar {
  66.         display: none;
  67.     }
  68.  
  69.     .home__area.home__area--banner {
  70.         padding-bottom: 5px;
  71.     }
  72.  
  73.     .img_stories_wrap {
  74.         border-radius: 100px;
  75.         width: 100%;
  76.         position: relative;
  77.         margin-bottom: 10px;
  78.     }
  79.     .img_stories {
  80.         width: 100.5%;
  81.         height: 65px;
  82.         opacity: 0.95;
  83.         background-repeat: no-repeat;
  84.         background-size: cover;
  85.         overflow: hidden;
  86.         border-radius: 30px;
  87.     }
  88.          
  89.          
  90.    
  91. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement