Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. body{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-size: 10px;
  6. font-family: 'Quicksand', sans-serif;
  7. background-image: linear-gradient(315deg,#7EE8FA 0%,#80FF62 74%);
  8. }
  9. .main{
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. /*justify-content: center;*/
  14. padding: 10px;
  15. height: 96vh;
  16. }
  17. h1{
  18. font-size: 3rem;
  19. color: #fff;
  20. font-weight: bold;
  21. }
  22. input{
  23. outline: 0;
  24. width: 60vw;
  25. margin: 10px 0;
  26. height: 80px;
  27. padding: 5px;
  28. padding-left: 20px;
  29. border-style: none;
  30. border-radius: 5px;
  31. background: rgba(138,138,138,.4);
  32. font-size: 3.5rem;
  33. color:#fff;
  34. text-align: center;
  35. font-family: 'Quicksand', sans-serif;
  36. }
  37. ::placeholder{
  38. color: #fff;
  39. }
  40.  
  41. @media(max-width: 500px) {
  42. body{
  43. padding-top: 20px;
  44. }
  45. h1{
  46. font-size: 2rem;
  47. }
  48. input{
  49. width: 90vw;
  50. font-size: 2rem;
  51. }
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement