Advertisement
Guest User

Contact Form 7 Overlay Submit

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