Angular Web App
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

79 lignes
1.7 KiB

  1. .search-input-container {
  2. width: 60%;
  3. margin: 0 auto;
  4. text-align: center;
  5. .search-input {
  6. display: flex;
  7. align-items: center;
  8. justify-content: flex-start;
  9. background-color: white;
  10. border-radius: 4rem;
  11. height: 5.5rem;
  12. border: 1px solid var(--border-grey);
  13. width: 80%;
  14. margin: 4rem auto 3rem;
  15. overflow: hidden;
  16. input {
  17. border: none;
  18. background-color: transparent;
  19. padding: 0 3rem;
  20. font-size: 1.5rem;
  21. color: var(--dark-grey);
  22. letter-spacing: 0.5px;
  23. flex-grow: 1;
  24. &::placeholder {
  25. font-weight: 300;
  26. }
  27. }
  28. button {
  29. height: 100%;
  30. border: none;
  31. background-color: var(--highlight);
  32. padding: 0 4rem;
  33. color: white;
  34. font-size: 1.6rem;
  35. letter-spacing: 0.5px;
  36. border-radius: 4rem;
  37. transition: opacity 0.3s;
  38. &:disabled {
  39. opacity: 0.5;
  40. }
  41. }
  42. }
  43. .form-message {
  44. margin: 6rem auto 2rem;
  45. line-height: 1.6;
  46. &.error {
  47. h5 {
  48. color: var(--error);
  49. }
  50. }
  51. &.warning {
  52. h5 {
  53. color: var(--warning);
  54. }
  55. }
  56. h5 {
  57. font-size: 2rem;
  58. color: var(--success);
  59. filter: brightness(80%);
  60. font-weight: 500;
  61. margin-bottom: 1rem;
  62. }
  63. p {
  64. font-size: 1.4rem;
  65. font-weight: 400;
  66. color: var(--dark-grey);
  67. }
  68. }
  69. }