flashy.css
1.55 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.angucomplete-dropdown {
border-color: #ececec;
border-width: 1px;
border-style: solid;
border-radius: 2px;
/*width: 250px;*/
padding: 6px;
cursor: pointer;
z-index: 9999;
position: absolute;
/*top: 32px;
left: 0px;
*/
margin-top: -6px;
background-color: #ffffff;
}
.angucomplete-description {
font-size: 14px;
}
.angucomplete-row {
padding: 5px;
color: #000000;
margin-bottom: 4px;
clear: both;
}
.angucomplete-selected-row {
background-color:#aaaaff;
}
.container {
position: relative;
width: 600px;
height: 80px;
}
.modal.bottom-sheet {
width: 40%;
margin-left: auto;
margin-right: auto;
}
<<<<<<< HEAD
/* label color */
.input-field label {
color: #673ab7;
}
/* label focus color */
.input-field input[type]:focus + label {
color: #b388ff;
}
/* label underline focus color */
.input-field input[type]:focus {
border-bottom: 1px solid #b388ff;
box-shadow: 0 1px 0 0 #b388ff;
}
/* valid color */
.input-field input[type].valid {
border-bottom: 1px solid #673ab7;
box-shadow: 0 1px 0 0 #673ab7;
}
/* invalid color */
.input-field input[type].invalid {
border-bottom: 1px solid #673ab7;
box-shadow: 0 1px 0 0 #673ab7;
}
/* icon prefix focus color */
.input-field .prefix.active {
color: #b388ff;
}
/* label focus color */
.input-field textarea[type]:focus + label {
color: #b388ff;
}
/* label underline focus color */
.input-field textarea[type]:focus {
border-bottom: 1px solid #b388ff;
box-shadow: 0 1px 0 0 #b388ff;
}
body {
background-color: #3A263D;
}