Guest User

Untitled

a guest
Feb 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. .active {
  2. position: relative;
  3. background: #edb77d;
  4. padding: 14px 1px;
  5. margin-right: 7px;
  6. margin-left: 3px;
  7. border-radius: 24px;
  8. -moz-border-radius: 24px;
  9. -webkit-border-radius: 24px;
  10. -o-border-radius: 24px;
  11. -ms-border-radius: 24px; }
  12. .active:after {
  13. position: absolute;
  14. content: 'Person';
  15. right: 17px;
  16. top: 50%;
  17. transform: translateY(-50%);
  18. -moz-transform: translateY(-50%);
  19. -webkit-transform: translateY(-50%);
  20. -o-transform: translateY(-50%);
  21. -ms-transform: translateY(-50%);
  22. font-size: 11px;
  23. color: #222;
  24. font-weight: bold; }
  25. .active input + label {
  26. margin-right: 59px; }
  27.  
  28. form {
  29. padding: 72px 70px 70px 70px; }
  30.  
  31. .form-group {
  32. margin-bottom: 10px;
  33. position: relative; }
  34.  
  35. .form-input {
  36. padding-top: 21px; }
  37.  
  38. .form-label {
  39. position: absolute;
  40. transition: 0.25s ease;
  41. -moz-transition: 0.25s ease;
  42. -webkit-transition: 0.25s ease;
  43. -o-transition: 0.25s ease;
  44. -ms-transition: 0.25s ease;
  45. color: #bebebe;
  46. left: 0;
  47. top: 23px; }
  48.  
  49. input {
  50. transition: 0.3s ease;
  51. -moz-transition: 0.3s ease;
  52. -webkit-transition: 0.3s ease;
  53. -o-transition: 0.3s ease;
  54. -ms-transition: 0.3s ease;
  55. padding-top: 10px;
  56. -webkit-appearance: none; }
  57. input:focus + .form-label, input:valid + .form-label {
  58. top: 1px;
  59. font-size: 11px;
  60. color: #edb77d;
  61. }
  62.  
  63.  
  64.  
  65. <div class="form-group form-input">
  66. <input type="text" name="name" id="name" value="" required/>
  67. <label for="name" class="form-label">Your name</label>
  68. </div>
Add Comment
Please, Sign In to add comment