Advertisement
Guest User

a

a guest
Oct 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.46 KB | None | 0 0
  1. /** css for divi page vkagl **/
  2.  
  3. /** size of icon FB in footer **/
  4. .et_pb_social_media_follow li a.icon::before{
  5.     height: 50px;
  6.     width: 50px;
  7.     line-height: 50px;
  8. }
  9.  
  10. /** back to the top button color and format **/
  11. .et_divi_100_custom_back_to_top .et_pb_scroll_top.et-visible{
  12.     background-color: #FF7C35;
  13. }
  14. .et_divi_100_custom_back_to_top .et_pb_scroll_top{
  15.     width: 50px;
  16.     height: 50px;
  17. }
  18.  
  19. /** contact form constraint and error message font color and size**/
  20. .et_contact_bottom_container{
  21.     font-size: 18px;
  22.     color: #ffffff;
  23. }
  24. .et-pb-contact-message{
  25.     font-size: 15px;
  26.     color: #ffffff;
  27. }
  28. /** email was sent message **/
  29. .et-pb-contact-message{
  30.     text-align: center;
  31.     font-size: 25px;
  32.     font-weight: bold;
  33.     color: #008B00;
  34.     background-color: #c5e3b4cc;
  35.     border: 5px #c5e3b4cc;
  36.     padding: 10px;
  37.     border-radius: 10px;
  38. }
  39.  
  40. /** contact form 7 design **/
  41. .wpcf7-text, .wpcf7-textarea, .wpcf7-captchar {
  42.     background-color: #eee !important;
  43.     border: none !important;
  44.     width: 100% !important;
  45.     -moz-border-radius: 0 !important;
  46.     -webkit-border-radius: 0 !important;
  47.     border-radius: 0 !important;
  48.     font-size: 14px;
  49.     color: #999 !important;
  50.     padding: 16px !important;
  51.     -moz-box-sizing: border-box;
  52.     -webkit-box-sizing: border-box;
  53.     box-sizing: border-box;
  54. }
  55. .wpcf7-submit {
  56.     color: #2EA3F2 !important;
  57.     margin: 8px auto 0;
  58.     cursor: pointer;
  59.     font-size: 20px;
  60.     font-weight: 500;
  61.     -moz-border-radius: 3px;
  62.     -webkit-border-radius: 3px;
  63.     border-radius: 3px;
  64.     padding: 6px 20px;
  65.     line-height: 1.7em;
  66.     background: transparent;
  67.     border: 2px solid;
  68.     -webkit-font-smoothing: antialiased;
  69.     -moz-osx-font-smoothing: grayscale;
  70.     -moz-transition: all 0.2s;
  71.     -webkit-transition: all 0.2s;
  72.     transition: all 0.2s;
  73. }
  74. .wpcf7-submit:hover {
  75.     background-color: #eee;
  76.     border-color: #eee;
  77.     padding: 6px 20px !important;
  78. }
  79.  
  80. /** responsive column of bill and contact**/
  81. #left {
  82.     min-height: 50px;
  83.     border: 2px dashed blue;    
  84.     width: 500px;
  85. }
  86.  
  87. #right {
  88.       overflow: hidden;
  89.     float: right;
  90.     width: 500px;
  91.     min-height: 50px;
  92.     margin-left: 0px;
  93.     border: 2px dashed red;
  94. }
  95.  
  96. @media only screen and (max-width: 600px) {
  97.     #right {      
  98.         float: left;
  99.         width: 100%;
  100.     }
  101.     #left {      
  102.         float: left;
  103.         width: 100%;
  104.     }
  105.     .wrapper-contact-form{
  106.         width:100%;
  107.         position: absolute;
  108.         float: left;
  109.         -webkit-transform: scaleY(-1);
  110.         transform: scaleY(-1);
  111.     }
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement