forms.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* Style global du formulaire */
  2. form {
  3. max-width: 850px;
  4. margin: 50px auto;
  5. padding: 20px;
  6. background-color: #f9f9f9;
  7. border-radius: 8px;
  8. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  9. font-family: 'Arial', sans-serif;
  10. }
  11. /* Style pour les labels */
  12. form label {
  13. display: block;
  14. font-weight: bold;
  15. margin-bottom: 8px;
  16. color: #333;
  17. }
  18. /* Style pour les champs de saisie */
  19. form input[type="text"],
  20. form input[type="email"],
  21. form input[type="password"],
  22. form textarea,
  23. form select {
  24. width: 100%;
  25. padding: 12px;
  26. margin-bottom: 20px;
  27. border: 1px solid #ccc;
  28. border-radius: 4px;
  29. background-color: #fff;
  30. font-size: 16px;
  31. box-sizing: border-box;
  32. transition: border-color 0.3s ease-in-out;
  33. }
  34. /* Style pour les erreurs (si Symfony utilise des classes pour les erreurs) */
  35. form .is-invalid {
  36. border-color: #e74c3c;
  37. }
  38. form .is-invalid + .invalid-feedback {
  39. color: #e74c3c;
  40. font-size: 0.875rem;
  41. }
  42. /* Focus pour améliorer l'expérience utilisateur */
  43. form input[type="text"]:focus,
  44. form input[type="email"]:focus,
  45. form input[type="password"]:focus,
  46. form textarea:focus,
  47. form select:focus {
  48. border-color: #007bff;
  49. outline: none;
  50. box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
  51. }
  52. /* Style pour les textarea */
  53. form textarea {
  54. min-height: 150px;
  55. resize: vertical; /* Permet de redimensionner verticalement seulement */
  56. }
  57. /* Style pour les boutons */
  58. form button[type="submit"],
  59. form input[type="submit"] {
  60. display: inline-block;
  61. width: 100%;
  62. padding: 12px;
  63. font-size: 16px;
  64. font-weight: bold;
  65. color: #fff;
  66. background-color: #007bff;
  67. border: none;
  68. border-radius: 4px;
  69. cursor: pointer;
  70. transition: background-color 0.3s ease-in-out;
  71. }
  72. form button[type="submit"]:hover,
  73. form input[type="submit"]:hover {
  74. background-color: #0056b3;
  75. }
  76. /* Style pour les cases à cocher et les boutons radio */
  77. form input[type="checkbox"],
  78. form input[type="radio"] {
  79. margin-right: 10px;
  80. }
  81. /* Wrapper pour les cases à cocher et radio */
  82. .form-check {
  83. margin-bottom: 20px;
  84. }
  85. .form-check-label {
  86. display: inline-block;
  87. color: #333;
  88. }
  89. /* Style pour les messages d'erreur (champ obligatoire, etc.) */
  90. .invalid-feedback {
  91. color: #e74c3c;
  92. margin-top: -15px;
  93. margin-bottom: 10px;
  94. font-size: 0.875rem;
  95. }
  96. /* Message de succès */
  97. form .success-message {
  98. color: #28a745;
  99. font-size: 1rem;
  100. margin-bottom: 20px;
  101. display: none;
  102. }
  103. /* Style pour les selects */
  104. form select {
  105. appearance: none;
  106. background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="none" stroke="%23333" stroke-width=".5" d="M2 0L0 2h4z"/></svg>') no-repeat right 10px center;
  107. background-size: 12px;
  108. }