Advertisement
Guest User

TYLERT Contact Page Form Style

a guest
Jan 22nd, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.04 KB | None | 0 0
  1. /* ========= Contact Page Contact Form 7 CSS Style Start ========= */
  2.  
  3. .wpcf7-form {
  4.     text-align: center;    
  5. }
  6.  
  7. .wpcf7-form-control.g-recaptcha > div {
  8.     margin: auto;
  9. }
  10.  
  11. .wpcf7-form-control.g-recaptcha {
  12.     padding-bottom: 15px;
  13. }
  14.  
  15. .wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-textarea {
  16.     box-sizing: border-box;
  17.     -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  18.     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  19.     box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  20.     font-size: 30px;
  21.     font-family: "Lato";
  22.     color: #E56324;
  23.     font-weight: 600;
  24.     padding: 20px 30px;
  25.     border: none;
  26.     margin-bottom: 15px;
  27.     margin-top: 15px;
  28.     width: 100%;
  29.    
  30.       box-sizing: border-box;
  31.     -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  32.     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  33.     box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  34.     font-size: 18px;
  35.     font-family: "Lato";
  36.     color: #1bae57;
  37.     font-weight: 600;
  38.     padding: 10px 10px;
  39.     border: none;
  40.     /* margin-bottom: 15px; */
  41.     /* margin-top: 15px; */
  42.     /* width: 100%; */
  43.     background-color: #f6f6f6;
  44.     border: 1px solid rgba(0, 0, 0, 0.05);
  45.     border-radius: 0;
  46. }
  47.  
  48. input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, textarea:focus {
  49.     background-color: #fff;
  50.     border: none !important;
  51. }
  52.  
  53. .wpcf7-submit {
  54.     font-size: 20px;
  55.     font-weight: 600;
  56.     padding: 20px 30px;
  57.     border: none;
  58.     margin-top: 30px;
  59.     margin: 0;
  60.     text-transform: none;
  61.     border-radius: 0;
  62.     width: 100%;
  63. }
  64.  
  65. div.wpcf7 .ajax-loader {
  66.     display: block;    
  67. }
  68.  
  69. div.wpcf7-validation-errors {
  70.     border: none !important;
  71. }
  72.  
  73. textarea {
  74.     resize: vertical;
  75. }
  76.  
  77. #theme-page .contact-choice select {
  78.     box-sizing: border-box;
  79.     -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  80.     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  81.     box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  82.     font-size: 30px;
  83.     font-family: "Lato";
  84.     color: #757575;
  85.     font-weight: 600;
  86.     padding: 20px 30px;
  87.     border: none;
  88.     margin-top: 15px;
  89.     margin-bottom: 15px;
  90.     line-height: normal;
  91.     background-color: #fdfdfd;
  92.     width: 100%;
  93. }
  94.  
  95. div.wpcf7-mail-sent-ok {
  96.     border: none;
  97. }
  98.  
  99. div.wpcf7-mail-sent-ng {
  100.     border: none;
  101. }
  102.  
  103. div.wpcf7-spam-blocked {
  104.     border: none;
  105. }
  106.  
  107. div.wpcf7-validation-errors {
  108.     border: none;
  109. }
  110.  
  111.  
  112. div.wpcf7-response-output {
  113.     position: relative;
  114.     display: inline-block;
  115.     margin: 0;
  116.     padding: 20px;
  117.     border-radius: 4px
  118. }
  119.  
  120. div.wpcf7-mail-sent-ok {
  121.     border: none;
  122.     background-color: #2a974b;
  123.     font-size: 20px;
  124.     color: white;
  125.     font-weight: 600;
  126.     text-shadow: 0 1px rgba(0,0,0,.4);
  127. }
  128.  
  129. div.wpcf7-mail-sent-ng {
  130.     border: none;
  131.     background-color: #f76b22;
  132. }
  133.  
  134. div.wpcf7-spam-blocked {
  135.     border: none;
  136.     background-color: #fbf1c8;
  137. }
  138.  
  139. div.wpcf7-validation-errors {
  140.     border: none;
  141.     background-color: #fbf1c8;
  142. }
  143.  
  144. /* ========= Contact Page Contact Form 7 CSS Style END ========= */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement