Advertisement
OpataJoshua

Untitled

Jul 21st, 2022
1,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.98 KB | None | 0 0
  1. :root{
  2.   --items-spacing: 20px;
  3.   --border-radius: 6px;
  4. }
  5.  
  6. body{
  7.   margin: 0px;
  8. }
  9.  
  10. #app{
  11.   height: 100vh;
  12.   width: 100vw;
  13.   display: flex;
  14.   align-items: center;
  15.   justify-content: center;
  16.   background: #F2F1F1;
  17. }
  18.  
  19. .card{
  20.   background: white;
  21.   border-radius: 11px;
  22.   padding: 30px 60px;
  23.   display: flex;
  24.   flex-direction: column;
  25.   gap: var(--items-spacing);
  26. }
  27.  
  28. .title{
  29.   text-align: center;
  30. }
  31.  
  32. .inputs-wrapper{
  33.   display: flex;
  34.   gap: var(--items-spacing);
  35. }
  36.  
  37. input, select{
  38.   background: #F0F2F3;
  39.   border: none;
  40.   border-radius: var(--border-radius);
  41.   padding: 8px 10px;
  42. }
  43.  
  44. button[type=submit]{
  45.   background: #3190C6;
  46.   padding: 10px;
  47.   color: white;
  48.   border-radius: var(--border-radius);
  49.   border: none;
  50. }
  51.  
  52. .answer-box{
  53.   display: flex;
  54.   flex-direction: column;
  55.   align-items: center;
  56.   background: #E7EEF2;
  57.   border-radius: var(--border-radius);
  58.   padding: 20px;
  59. }
  60.  
  61. .answer-label{
  62.   margin: 0px;
  63. }
  64.  
  65. #answer-txt{
  66.   margin: 0px;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement