Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. .first_row,.sec_row{
  2. display: flex;
  3. }
  4.  
  5. .wpcf7{
  6. max-width: 100%;
  7. min-width: 100%;
  8. }
  9.  
  10. .first_row select,.first_row input{
  11. max-width: 100%;
  12. min-width: 100%;
  13. background: transparent;
  14. padding: 5px;
  15. border: 1px solid #404a63;
  16. color: #404a63;
  17. border-radius: 5px;
  18. }
  19.  
  20.  
  21. .sec_row input{
  22. max-width: 100%;
  23. min-width: 100%;
  24. background: transparent;
  25. padding: 5px;
  26. border: 1px solid #404a63;
  27. color: #404a63;
  28. border-radius: 5px;
  29. }
  30.  
  31. .wpcf7-submit{
  32. max-width: 100%;
  33. min-width: 100%;
  34. background: transparent;
  35. border: 1px solid white;
  36. border-radius: 5px;
  37. color: white;
  38. transition: 0.3s ease-in-out;
  39. margin-top: 20px;
  40. padding: 10px;
  41. }
  42.  
  43.  
  44. .wpcf7-submit:hover{
  45. background: white;
  46. border: 1px solid #202b47;
  47. color: #202b47;
  48. transition: 0.3s ease-in-out;
  49. }
  50.  
  51.  
  52. .first_row select:focus,.first_row input:focus,.sec_row input:focus{
  53. outline: none;
  54. border: 1px solid white;
  55. }
  56.  
  57.  
  58. .wpcf7-submit:focus{
  59. outline: none;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement