Facebook
From Arturo Ivan Artaza, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 90
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     box-sizing: border-box;
  5.     font-family: 'Poppins', sans-serif;
  6. }
  7. body {
  8.     background-image: url(./images/bg-intro-desktop.png);
  9.     background-color: hsl(0, 100%, 74%) ;
  10. }
  11.  
  12. .dad {
  13.  display: flex;
  14.  flex-direction: row;
  15.  justify-content: space-between;
  16.  align-items: center;
  17.  margin: 50px 50px;
  18. }
  19.  
  20. .text-content {
  21.  margin: 150px 10px;
  22.  color: white;
  23. }
  24.  
  25. .form{
  26.     display: block;
  27.     height: 400px;
  28.     width: 500px;
  29.     border: 4px solid black;
  30.     background: white;
  31. }
  32.  
  33. .form-inside > input{
  34.  
  35.   margin: 5px auto;
  36.   border-radius: 5px;
  37.   text-align: center;
  38.   width: 450px;
  39.   height: 50px;
  40. }
  41.  
  42. .form-inside{
  43.    margin: 20px;
  44.   /* background: white;*/
  45. }
  46.  
  47.  .try {
  48.     width: 25%;
  49.     height: 50px;
  50.     justify-self: flex-start;
  51.     border-radius: 10px;
  52.     background-color: hsl(248, 32%, 49%);
  53. }
  54.  
  55. .try > p {
  56.     vertical-align: middle;
  57.     text-align: center;
  58.     line-height: 50px;
  59. }
  60.  
  61. .button {
  62.     color: white;
  63.     background: hsl(154, 59%, 51%);
  64.     text-transform: uppercase;
  65.     font-weight: 600;
  66. }