jorandradefig

index.scss

Jun 4th, 2021 (edited)
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.67 KB | None | 0 0
  1. $primary: #fe2c55;
  2. $secondary: #ffffff;
  3.  
  4. * {
  5.   margin: 0;
  6.   padding: 0;
  7.   -webkit-font-smoothing: antialiased;
  8.   -moz-osx-font-smoothing: grayscale;
  9. }
  10.  
  11. #App{
  12.   margin: 0;
  13.   padding: 0;
  14.   display: flex;
  15.   flex-direction: column;
  16.   justify-content: center;
  17.   align-items: center;
  18. }
  19.  
  20. #Home{
  21.   margin: 0;
  22.   padding: 0;
  23. }
  24.  
  25. #Navbar{
  26.   height: 59px;
  27.   display: flex;
  28.   flex-direction: row;
  29.   align-items: center;
  30.   border-bottom: 1px solid #cecece
  31.  
  32. }
  33.  
  34. #Menu{
  35.   width: 80px;
  36.   border-right: 1px solid #cecece;
  37.   display: flex;
  38.   flex-direction: column;
  39.   img {
  40.     border-radius: 50%;
  41.     -webkit-border-radius: 50%;
  42.     -moz-border-radius: 50%;
  43.     -ms-border-radius: 50%;
  44.     -o-border-radius: 50%;
  45.     margin-top: 10%;
  46.     margin-bottom: 10%;
  47.    
  48.     &.icon{
  49.       margin-top: 20px;
  50.       margin-bottom: 20px;
  51.     }
  52.     &.profile{
  53.       margin-top: 10px;
  54.       margin-bottom: 10px;
  55.     }
  56.   }
  57. }
  58. #Logo{
  59.  
  60.  
  61. }
  62.  
  63. #SearchBar{
  64.   width: 361px;
  65.   height: 46px;
  66.   background-color: #1618230f;
  67.   border: none;
  68.   border-radius: 50px;
  69.   padding-left: 15px;
  70. }
  71.  
  72. #Upload{
  73.   text-align: center;
  74.   font-weight: 700;
  75.   margin-bottom: 0;
  76.  
  77. }
  78.  
  79. #Button {
  80.   width: 100px;
  81.   height: 36px;
  82.   border-radius: 4px;
  83.   font-weight: 700;
  84.   -webkit-border-radius: 4px;
  85.   -moz-border-radius:4px;
  86.   &.primary{
  87.     background-color: #fe2c55;
  88.     color: white;
  89.   }
  90.   &.secondary{
  91.     background-color: white;
  92.     color: #fe2c55;
  93.     border-color: #fe2c55;
  94.   }
  95. }
  96.  
  97. #Feed {
  98.   display: flex;
  99.   flex-direction: column;
  100.   justify-content: center;
  101.   align-items: center;
  102.  
  103. }
  104.  
  105. #TikTok {
  106.   padding-top: 20px;
  107.   padding-bottom: 20px;
  108.   .left {
  109.     padding-left: 0;
  110.     padding-right: 0;
  111.     .profile {
  112.       border-radius: 50%;
  113.       -webkit-border-radius: 50%;
  114.       -moz-border-radius: 50%;
  115.       -ms-border-radius: 50%;
  116.       -o-border-radius: 50%;
  117.     }
  118.   }
  119.   .mid {
  120.     padding-left: 10px;
  121.     padding-right: 10px;
  122.     .username {
  123.       padding-left: 0;
  124.       padding-right: 0;
  125.     }
  126.     .name {
  127.  
  128.     }
  129.     .content {
  130.  
  131.     }
  132.     .soundtrack {
  133.  
  134.     }
  135.     .video {
  136.       border-radius: 2%;
  137.       -webkit-border-radius: 2%;
  138.       -moz-border-radius: 2%;
  139.       -ms-border-radius: 2%;
  140.       -o-border-radius: 2%;
  141.     }
  142.   }
  143.   .right {
  144.     display: flex;
  145.     flex-direction: column;
  146.     justify-content: space-between;
  147.     .follow {
  148.     }
  149.     .social {
  150.       .likes {
  151.  
  152.       }
  153.       .comments {
  154.  
  155.       }
  156.       .shares {
  157.  
  158.       }
  159.     }
  160.   }
  161.  
  162.  
  163. }
  164.  
  165. #Card {
  166.   padding: 20px;
  167.   video {
  168.     position: absolute;
  169.     width: 100%;
  170.     height: 100%;
  171.   }
  172.   .body {
  173.     height: 300px;
  174.     background-color: coral;
  175.   }
  176. }
Add Comment
Please, Sign In to add comment