Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.46 KB | None | 0 0
  1. input, textarea
  2. {
  3.     border: #cebe90 1px solid;
  4.     background-color: #878380;
  5.     color: black;
  6.     width: 40%;
  7.     height: 35px;
  8. }
  9. ::placeholder
  10. {
  11.     color: #c7c4c2;
  12.     font-size: 15px;
  13.     padding-left: 5px;
  14. }
  15. /*send button*/
  16. #wpcf7-f1441-o1 > form > p:nth-child(8) > input:hover
  17. {
  18.     background-color: #cebe90;
  19. }
  20. /*send button*/
  21. #wpcf7-f1441-o1 > form > p:nth-child(8) > input
  22. {
  23.     background-color: #4d2742;
  24.     border-color: #4d2742;
  25.     width: 20%;
  26.     height: 50px;
  27.     color: white;
  28.     margin-top: -7%;
  29. }
  30. /*last name*/
  31. #wpcf7-f1441-o1 > form > p:nth-child(3) > span > input
  32. {
  33.     float: right;  
  34.     margin-top: -10px;
  35. }
  36. /*first name*/
  37. #wpcf7-f1441-o1 > form > p:nth-child(2) > span > input
  38. {
  39.     float: left;
  40.     margin-top: -10px;
  41. }
  42. /*email address*/
  43. #wpcf7-f1441-o1 > form > p:nth-child(4) > span > input
  44. {
  45.     float: left;
  46.     margin-top: 10px;
  47. }
  48. /*phone number*/
  49. #wpcf7-f1441-o1 > form > p:nth-child(5) > span > input
  50. {
  51.     float: right;
  52.     margin-top: 10px;
  53. }
  54. /*send button*/
  55. #wpcf7-f1441-o1 > form > p:nth-child(8) > input
  56. {
  57.     float: right;
  58. }
  59. /*text area*/
  60. #wpcf7-f1441-o1 > form > p:nth-child(6) > span > textarea
  61. {
  62.     margin-top: 10px;
  63.   width: 100%;
  64. }
  65. /*checkbox*/
  66. #wpcf7-f1441-o1 > form > p:nth-child(7) > span > span > span > input[type=checkbox]
  67. {
  68.     float:left;
  69.     width: 11%;
  70.     margin-top: -2%
  71. }
  72. #wpcf7-f1441-o1 > form > p:nth-child(7) > span > span > span > span
  73. {
  74.     font-size: 15px;
  75. }
  76. #wpcf7-f1441-o1 > form > p:nth-child(7) > span > span > span
  77. {
  78.     width: 31%;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement