Built files from Bizgaze WebServer
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.

floatinglabel.css 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .floating-label-form-group {
  2. /*border-bottom: 1px solid #ccc;*/
  3. margin-bottom: 0;
  4. position: relative;
  5. /*padding-bottom: 0.5em;*/
  6. }
  7. .floating-label-form-group input,
  8. .floating-label-form-group textarea {
  9. background: none;
  10. border: none;
  11. border-radius: 0;
  12. padding-left: 5px;
  13. padding-right: 5px;
  14. box-shadow: none !important;
  15. position: relative;
  16. /*font-size: 1.1em;*/
  17. resize: none;
  18. }
  19. .floating-label-form-group select {
  20. margin-top: 0;
  21. padding: 0;
  22. border: none;
  23. border-radius: 0;
  24. box-shadow: none;
  25. margin-left: -4px;
  26. background: transparent;
  27. }
  28. .floating-label-form-group label {
  29. display: block;
  30. position: relative;
  31. top: 2em;
  32. opacity: 0;
  33. z-index: 0;
  34. /*font-size: 0.85em;*/
  35. line-height: 1.764705882em;
  36. vertical-align: middle;
  37. vertical-align: baseline;
  38. margin: 0;
  39. -webkit-transition: top 0.5s ease, opacity 0.5s ease;
  40. -moz-transition: top 0.5s ease, opacity 0.5s ease;
  41. -ms-transition: top 0.5s ease, opacity 0.5s ease;
  42. transition: top 0.5s ease, opacity 0.5s ease;
  43. }
  44. .floating-label-form-group:not(:first-child) {
  45. border-left: 1px solid #ccc;
  46. padding-left: 14px;
  47. }
  48. .floating-label-form-group-with-value label {
  49. top: 0;
  50. opacity: .5;
  51. font-weight: 400;
  52. }
  53. .select2-choices {
  54. border: 0px !important;
  55. background-image: none;
  56. }
  57. .floating-label-form-group-with-focus label {
  58. color: #808080;
  59. }
  60. form .row:first-child .floating-label-form-group {
  61. /*border-top: 1px solid #ccc;*/
  62. }
  63. .form-group-required {
  64. border-bottom: 1px solid #fb6b5b !important;
  65. }