-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
43 lines (38 loc) · 845 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.input {
color: white;
}
/* label color */
/* .input-field label {
color: white;
} */
/* label focus color */
/* .input-field input[type=text]:focus + label {
color:whitesmoke;
} */
/* label underline focus color
.input-field input[type=text]:focus {
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
}
/* valid color */
/* .input-field input[type=text].valid {
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
} */
/* invalid color */
/* .input-field input[type=text].invalid {
border-bottom: 1px solid #000;
box-shadow: 0 1px 0 0 #000;
} */
/* icon prefix focus color */
/* .input-field .prefix.active {
color: #000;
} */