Advertisement
martawijaya

Contact Us

Apr 22nd, 2019
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.91 KB | None | 0 0
  1. /* contact us wrapper*/
  2. .contact-us-wrap {
  3.   background-color: #FFFFFF;
  4.   visibility: hidden;
  5.   opacity: 0;
  6.   position: fixed;
  7.   top: 0;
  8.   left: 0;
  9.   width: 100%;
  10.   height: 100%;
  11.   transition: all 500ms ease;
  12.   z-index: 9;
  13. }
  14.  
  15. .contact-us-wrap.open {
  16.   visibility: visible;
  17.   opacity: 1;
  18. }
  19.  
  20. .contact-us-wrap .contact-col-wrap {
  21.   position: relative;
  22. }
  23.  
  24. .contact-us-wrap .contact-leftdetail {
  25.   position: absolute;
  26.   top: 50%;
  27.   left: unset;
  28.   right: 0;
  29.   transform: translate(0%,-50%);
  30.   width: 400px;
  31. }
  32.  
  33. .text-contact-title h3 {
  34.   font-family: 'Amiri';
  35.   font-weight: 400;
  36.   font-style: normal;
  37.   line-height: 88px;
  38.   font-size: 70px;
  39.   margin-bottom: 50px
  40. }
  41.  
  42. .text-contact-title h3 span {
  43.   font-family: 'Alex Brush';
  44.   font-weight: 400;
  45.   font-style: normal;
  46.   margin: 0px 0px 0 0px;
  47.   font-size: 100px;
  48.   display: block;
  49.   text-align: right;
  50.   position: absolute;
  51.   top: 35px;
  52.   left: 190px
  53. }
  54.  
  55. .contact-details-wrap .contact-details img {
  56.    width: 30px;
  57.    height: 30px;
  58. }
  59.  
  60. .contact-details-wrap .contact-details, .contact-details-wrap .address-text {
  61.   display : inline-block;
  62.   width: 50%;
  63.   float: left;
  64. }
  65.  
  66. .contact-details-wrap .contact-details {
  67.   width: 150px
  68. }
  69.  
  70. .contact-details-wrap .address-text {
  71.   font-size: 14px;
  72. }
  73.  
  74. .contact-col-wrap .contact-close {
  75.   top: 50%;
  76.   transform: translateY(-50%);
  77.   position: fixed;
  78.   left: 50px;
  79.   z-index: 4;
  80.   cursor: pointer;
  81.   color: #000;
  82.   opacity: 1;
  83.   transition: all 500m ease;
  84. }
  85.  
  86. .contact-col-wrap .contact-close div {
  87.     width: 55px;
  88.     height: 2px;
  89.     margin: 9px 0;
  90.     transition: 0.4s;
  91.     background-color: #333;
  92. }
  93.  
  94. .contact-col-wrap .contact-close {
  95.  
  96. }
  97.  
  98.  
  99. /* contact form */
  100. .contact-col-wrap .contact-form-wrap {
  101.   padding-left: 50px;
  102.  
  103. }
  104.  
  105. .contact-col-wrap .contact-form {
  106.   width: 70%;
  107. }
  108.  
  109. .contact-col-wrap .contact-form-wrap input, .contact-col-wrap .contact-form-wrap textarea {
  110.   width: 100%;
  111.   border: 1px solid #000;
  112.   background: transparent;
  113. }
  114.  
  115. .contact-col-wrap .contact-form-wrap input {
  116.   height: 35px
  117. }
  118.  
  119. .contact-col-wrap .contact-form-wrap label {
  120.   font-weight: bold;
  121.   font-family: 'Amiri';
  122.   font-size: 18px
  123. }
  124.  
  125. .contact-col-wrap .contact-form-wrap textarea {
  126.   height: 150px;
  127. }
  128.  
  129. .contact-col-wrap .rechapcha-text {
  130.   text-align: right;
  131.   float: right;
  132. }
  133.  
  134. .contact-col-wrap .rechapcha-text p {
  135.   font-size: 12px;
  136.   margin-bottom: 0;
  137. }
  138.  
  139. .contact-col-wrap .rechapcha-text a {
  140.   color: #000;
  141.   text-decoration: none;
  142. }
  143.  
  144. .contact-col-wrap .submit-wrap input {
  145.   width: auto;
  146.   height: auto;
  147.   padding: 6px 18px;
  148.   border-radius: 5px;
  149.   font-family: 'Open Sans';
  150.   font-size: 14px;
  151.   border: 1px solid #000;
  152. }
  153.  
  154. .grecaptcha-badge {
  155.   display: none;
  156. }
  157.  
  158. .contact-us-wrap .bg-contact {
  159.   width: 100%;
  160.   height: 100%;
  161.   top: 0;
  162.   left: 0;
  163.   position: absolute;
  164.   background-size: contain;
  165.   background-repeat: no-repeat;
  166.   opacity: 0.5;
  167. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement