contact-form-7-main-rtl.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Astra Theme compatibility with Contact Form 7
  3. */
  4. .wpcf7 form {
  5. position: relative;
  6. }
  7. .wpcf7 form > p,
  8. .wpcf7 form > div {
  9. margin-bottom: 1.2em;
  10. }
  11. .wpcf7 .wpcf7-form-control-wrap {
  12. width: 100%;
  13. display: block;
  14. }
  15. .wpcf7 input:not([type="submit"]):focus,
  16. .wpcf7 textarea:focus,
  17. .wpcf7 select:focus {
  18. border-color: #eaeaea;
  19. outline: 0;
  20. }
  21. .wpcf7 input:not([type="submit"]), .wpcf7 textarea, .wpcf7 select {
  22. width: 100%;
  23. padding: 0.75em;
  24. }
  25. .wpcf7 input[type="file"] {
  26. color: #666;
  27. height: auto;
  28. border-width: 1px;
  29. border-style: solid;
  30. border-color: #eaeaea;
  31. border-radius: 2px;
  32. background: #fafafa;
  33. box-shadow: none;
  34. box-sizing: border-box;
  35. transition: all 0.2s linear;
  36. }
  37. .wpcf7 input[type="radio"],
  38. .wpcf7 input[type="checkbox"] {
  39. display: inline-block;
  40. background: #E9EEF2;
  41. color: #555;
  42. clear: none;
  43. cursor: pointer;
  44. line-height: 0;
  45. height: 1.2em;
  46. margin: -3px 0 0 4px;
  47. outline: 0;
  48. padding: 0;
  49. border-radius: 0.2em;
  50. text-align: center;
  51. vertical-align: middle;
  52. width: 1.4em;
  53. min-width: 1.4em;
  54. transition: all 0.2s linear;
  55. }