base.css 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .title {
  2. font-size: 30px;
  3. background: #F5F5F5;
  4. height: 200px;
  5. display: flex;
  6. align-items: center;
  7. padding: 0px 25px;
  8. }
  9. .container {
  10. font-size: 40px;
  11. padding: 10px 50px;
  12. }
  13. .add_photo {
  14. height: 400px;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. margin: 10px;
  19. border-style: solid;
  20. border-width: 3px;
  21. }
  22. input {
  23. padding-bottom: 10px;
  24. font-size: 40px;
  25. height: 80px;
  26. width: 100%;
  27. border-style: none none solid none;
  28. border-width: 0.5px;
  29. }
  30. input :focus {
  31. outline:none;
  32. border: 1px none none solid none #1E90FF;
  33. }
  34. [type='radio'] {
  35. width: 30px;
  36. height: 30px;
  37. margin-right: 10px;
  38. }
  39. [type='checkbox'] {
  40. width: 30px;
  41. height: 30px;
  42. margin-right: 10px;
  43. display: none;
  44. }
  45. button {
  46. width: 250px;
  47. height: 100px;
  48. font-size: 40px;
  49. margin-top: 80px;
  50. background: #1E90FF;
  51. color: white;
  52. border-radius: 25px;
  53. float:right;
  54. }
  55. select {
  56. font-size: 40px;
  57. height: 80px;
  58. width: 100%;
  59. }