Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1.  
  2. /* label color */
  3. .input-field label {
  4. color: #000;
  5. }
  6. /* label focus color */
  7. .input-field input[type=text]:focus + label {
  8. color: #42a5f5;
  9. }
  10. /* label underline focus color */
  11. .input-field input[type=text]:focus {
  12. border-bottom: 1px solid #42a5f5;
  13. box-shadow: 0 1px 0 0 #42a5f5;
  14. }
  15. /* valid color */
  16. .input-field input[type=text].valid {
  17. border-bottom: 1px solid #42a5f5;
  18. box-shadow: 0 1px 0 0 #42a5f5;
  19. }
  20. /* invalid color */
  21. .input-field input[type=text].invalid {
  22. border-bottom: 1px solid #ff3d00;
  23. box-shadow: 0 1px 0 0 #ff3d00;
  24. }
  25. /* icon prefix focus color */
  26. .input-field .prefix.active {
  27. color: #ff3d00;
  28. }
  29. .dropdown-content li>a, .dropdown-content li>span {
  30. color: #42a5f5;
  31. }
  32. input[type="text"]:disabled {
  33. color: #000;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement