style.css 723 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. *{
  2. margin: 0;
  3. }
  4. .wrapper{
  5. display: flex;
  6. flex-direction: column;
  7. max-width: 400px;
  8. align-items: center;
  9. }
  10. button{
  11. align-self: center;
  12. width: 100px;
  13. }
  14. input, button{
  15. margin-bottom: 7px;
  16. }
  17. input{
  18. margin-right: 10px;
  19. width: 200px;
  20. box-sizing: border-box;
  21. }
  22. .error{
  23. color: red;
  24. position: absolute;
  25. left: 210px;
  26. width: 100px;
  27. }
  28. .stringWrapper{
  29. display: flex;
  30. position: relative
  31. }
  32. .mandatory{
  33. color: red;
  34. position: absolute;
  35. left: -10px;
  36. top: 4px
  37. }
  38. .checkBoxWrapper{
  39. display: flex;
  40. max-width: 200px;
  41. justify-content: space-around;
  42. position: relative;
  43. }
  44. .checkBoxWrapper p {
  45. position: relative;
  46. top: -3px;
  47. left: 30px;
  48. }