Advertisement
Guest User

New Contact Form 7

a guest
Apr 4th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.98 KB | None | 0 0
  1. /* For Desktop */
  2. @media (min-width: 840px) {
  3.  #wpcf7-f234-p173-o1 .cf7md-submit {
  4.     grid-column-start: 12;
  5.   }
  6.  
  7.   #wpcf7-f234-p173-o1 .submit1 {
  8.     margin-top: -98px;
  9.     min-height: 56px;
  10.     border-radius: 0;
  11.   }
  12.  
  13.   #wpcf7-f234-p173-o1 input[type="email"] {
  14.     padding-right: 100px;
  15.   }
  16. }
  17.  
  18.  
  19. /* For Tablet */
  20. @media (min-width: 481px) and (max-width:839px){
  21.  #wpcf7-f234-p173-o1 .cf7md-submit {
  22.     grid-column-start: 8;
  23.   }
  24.  
  25.   #wpcf7-f234-p173-o1 .submit1 {
  26.     margin-top: -98px;
  27.     min-height: 56px;
  28.     border-radius: 0;
  29.   }
  30.  
  31.   #wpcf7-f234-p173-o1 input[type="email"] {
  32.     padding-right: 100px;
  33.   }
  34. }
  35.  
  36. /* For Mobile */
  37. @media (max-width: 480px) {
  38.  #wpcf7-f234-p173-o1 .cf7md-submit {
  39.     grid-column-start: 4;
  40. border-radius: none !important;
  41.   }
  42.  
  43.   #wpcf7-f234-p173-o1 .submit1 {
  44.     margin-top: -109px;
  45.     min-height: 55px !important;
  46.     border-radius: 0;
  47.   }
  48.  
  49.   #wpcf7-f234-p173-o1input[type="email"] {
  50.     padding-right: 200px;
  51.   }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement