Advertisement
OpataJoshua

Untitled

Aug 4th, 2022
1,289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. body{
  2.   margin: 0px;
  3. }
  4.  
  5. #app{
  6.   width: 100vw;
  7.   height: 100vh;
  8.  
  9.   display: flex;
  10.   flex-direction: column;
  11.   align-items: center;
  12.   background: #f3f5f7;
  13. }
  14.  
  15. .top-form, .list-card{
  16.   background: white;
  17.   width: 500px;
  18.   max-width: 90%;
  19.   padding: 10px 10px;
  20. }
  21.  
  22. .top-form{
  23.   margin-top: 80px;
  24.   display: flex;
  25. }
  26.  
  27. .auto-complete{
  28.   flex: 1;
  29.   margin-right: 20px;
  30. }
  31.  
  32. .auto-complete *{
  33.   width: 100%;
  34. }
  35.  
  36. .list-card{
  37.   margin-top: 20px;
  38. }
  39.  
  40. .list-card ul{
  41.   list-style: decimal;
  42. }
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement