No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

form-elements.css 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. input[type="text"],
  2. input[type="password"],
  3. textarea,
  4. textarea.form-control {
  5. height: 50px;
  6. margin: 0;
  7. padding: 0 24px;
  8. vertical-align: middle;
  9. background: #f8f8f8;
  10. border: 3px solid #ddd;
  11. font-family: 'Roboto', sans-serif;
  12. font-size: 16px;
  13. font-weight: 300;
  14. line-height: 50px;
  15. color: #888;
  16. -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
  17. -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
  18. -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
  19. }
  20. .radio-box{
  21. margin-bottom: 25px;
  22. }
  23. .radio-box .radio-inline{
  24. font-size: 16px;
  25. margin-right:15px;
  26. }
  27. input[type="radio"].form-control-radio{
  28. height: 17px;
  29. transform: scale(1.5);
  30. }
  31. select.form-control {
  32. height: 50px;
  33. margin: 0;
  34. padding: 0 20px;
  35. vertical-align: middle;
  36. background: #f8f8f8;
  37. border: 3px solid #ddd;
  38. font-family: 'Roboto', sans-serif;
  39. font-size: 16px;
  40. font-weight: 300;
  41. line-height: 50px;
  42. color: #888;
  43. -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
  44. -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
  45. -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
  46. }
  47. textarea,
  48. textarea.form-control {
  49. padding-top: 10px;
  50. padding-bottom: 10px;
  51. line-height: 30px;
  52. }
  53. input[type="text"]:focus,
  54. input[type="password"]:focus,
  55. textarea:focus,
  56. textarea.form-control:focus {
  57. outline: 0;
  58. background: #fff;
  59. border: 3px solid #ccc;
  60. -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
  61. }
  62. input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder,
  63. textarea:-moz-placeholder, textarea.form-control:-moz-placeholder { color: #888; }
  64. input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder,
  65. textarea:-ms-input-placeholder, textarea.form-control:-ms-input-placeholder { color: #888; }
  66. input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder,
  67. textarea::-webkit-input-placeholder, textarea.form-control::-webkit-input-placeholder { color: #888; }
  68. button.btn {
  69. height: 50px;
  70. margin: 0;
  71. padding: 0 20px;
  72. vertical-align: middle;
  73. background: #3366ff;
  74. border: 0;
  75. font-family: 'Roboto', sans-serif;
  76. font-size: 16px;
  77. font-weight: 300;
  78. line-height: 50px;
  79. color: #fff;
  80. -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
  81. text-shadow: none;
  82. -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
  83. -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
  84. }
  85. button.btn:hover { opacity: 0.6; color: #fff; }
  86. button.btn:active { outline: 0; opacity: 0.6; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
  87. button.btn:focus { outline: 0; opacity: 0.6; background: #3366ff; color: #fff; }
  88. button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 0.6; background: #3366ff; color: #fff; }