Commit 7c4ff6b2a1b804f06788de1bf5a26dafe18f4797

Authored by Melody
1 parent 2f0ac6fc48

Lovely purple colors for everybody

Showing 1 changed file with 44 additions and 0 deletions Side-by-side Diff

... ... @@ -70,4 +70,48 @@
70 70 margin-left: auto;
71 71 margin-right: auto;
72 72 }
  73 +
  74 +/* label color */
  75 +.input-field label {
  76 + color: #673ab7;
  77 +}
  78 +
  79 +/* label focus color */
  80 +.input-field input[type]:focus + label {
  81 + color: #b388ff;
  82 +}
  83 +
  84 +/* label underline focus color */
  85 +.input-field input[type]:focus {
  86 + border-bottom: 1px solid #b388ff;
  87 + box-shadow: 0 1px 0 0 #b388ff;
  88 +}
  89 +
  90 +/* valid color */
  91 +.input-field input[type].valid {
  92 + border-bottom: 1px solid #673ab7;
  93 + box-shadow: 0 1px 0 0 #673ab7;
  94 +}
  95 +
  96 +/* invalid color */
  97 +.input-field input[type].invalid {
  98 + border-bottom: 1px solid #673ab7;
  99 + box-shadow: 0 1px 0 0 #673ab7;
  100 +}
  101 +
  102 +/* icon prefix focus color */
  103 +.input-field .prefix.active {
  104 + color: #b388ff;
  105 +}
  106 +
  107 +/* label focus color */
  108 +.input-field textarea[type]:focus + label {
  109 + color: #b388ff;
  110 +}
  111 +
  112 +/* label underline focus color */
  113 +.input-field textarea[type]:focus {
  114 + border-bottom: 1px solid #b388ff;
  115 + box-shadow: 0 1px 0 0 #b388ff;
  116 +}