Advertisement
Guest User

Untitled

a guest
May 13th, 2017
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.13 KB | None | 0 0
  1. /* Form styles */
  2. input[type="text"],
  3. input[type="password"],
  4. input[type="email"],
  5. input[type="reset"],
  6. select,
  7. textarea { 
  8.     resize:none;
  9.     background-color:#fff;
  10.     font-size:15px;
  11.     border:1px solid #d9d9d9;
  12.     padding:12px 10px;
  13.     color:#606060;
  14.     -webkit-border-radius: 4px;
  15.     border-radius: 4px;
  16.     -webkit-box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
  17.     box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.08);}
  18.  
  19. input[type="text"],
  20. input[type="password"],
  21. input[type="email"],
  22. select {
  23.     height:16px;
  24.     line-height:16px}
  25.            
  26. input[type="reset"],
  27. input[type="submit"],
  28. input[type="button"],
  29. button{
  30.     -webkit-appearance: button;
  31.     cursor: pointer;
  32.     *overflow: visible;
  33.     height:42px;
  34.     display:inline-block;
  35.     line-height:42px;
  36.     border-radius:21px;
  37.     -webkit-border-radius:21px;
  38.     padding:0 23px;
  39.     margin:10px 0 0 0;
  40.     background:url(images/button_sprite.png) 0 0 repeat-x;
  41.     color:#fff;
  42.     font-size:16px;
  43.     font-family: 'Nunito', sans-serif;
  44.     font-weight:normal;
  45.     text-shadow:0 1px 1px rgba(0,0,0, 0.25);
  46.     -webkit-box-shadow:  0px 5px 4px 0px rgba(227, 193, 91, 0.75);
  47.     box-shadow:  0px 5px 4px 0px rgba(227, 193, 91, 0.75);
  48.     text-align:center;
  49.     border:none
  50. }  
  51.  
  52. ::-webkit-input-placeholder {color: #999;}
  53. :-moz-placeholder {color: #999;}
  54. ::-moz-placeholder {color: #999;}
  55. :-ms-input-placeholder {color:#999;}
  56.  
  57.  
  58. /* Custom checkboxes, radios */
  59. .custom-checkbox,.custom-radio { position:relative; font-size:13px; text-shadow:0 1px 1px #fff;}
  60.  
  61. .custom-checkbox input, .custom-radio input { position:absolute; left:2px; top:5px; margin:0; border:none; width:1px; height:1px}
  62. .custom-checkbox label, .custom-radio label { display:block; position:relative; line-height:1; padding:.4em 0 .3em 30px; margin:0 0 .3em; cursor:pointer; color:#3f4b56}
  63. .custom-checkbox label span,
  64. .custom-radio label span {
  65.     position:absolute;
  66.     right:0;
  67.     top:.4em}
  68.    
  69. .ie7 .custom-checkbox input {left:2px; top:7px}
  70.  
  71. .custom-checkbox label { background:url(images/styled_checkbox.png) no-repeat; }
  72. .custom-radio label { background:url(images/styled_radiobutton.png) no-repeat; }
  73. .custom-checkbox label,.custom-radio label { background-position:-10px -10px; }
  74. .custom-checkbox label.checked,.custom-radio label.checked { background-position:-10px -206px; color:#3f4b56 }
  75. .custom-checkbox label.hover,.custom-checkbox label.focus,.custom-radio label.hover,.custom-radio label.focus {}
  76. .custom-checkbox label.checked.hover,.custom-checkbox label.checkedFocus {}
  77. .custom-checkbox label.focus,.custom-radio label.focus { outline:0; }
  78.  
  79. /* animated preloader*/
  80. .preloader {
  81.     background:url(images/loading.gif) center center no-repeat;
  82.     display:inline-block}
  83.  
  84. /* contact form */
  85. .contact_form .row {
  86.     position:relative;
  87.     padding:6px 0;
  88.     margin:0}
  89.    
  90. .contact_form .inputtext,
  91. .contact_form .textarea {
  92.     width:340px}
  93.  
  94. .contact_form .textarea {
  95.     height:90px;
  96.     overflow:auto;
  97.     resize:vertical;
  98.     padding-right:10px}
  99.  
  100. .contact_form .field_message textarea {
  101.     background:url(images/icons/icon_comments.png) 330px 10px no-repeat}
  102.    
  103. .contact_form .rowSubmit {
  104.     padding:6px 0;
  105.     position:relative;}
  106.  
  107. .contact_form .rowSubmit input {
  108.     margin:0}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement