-
Notifications
You must be signed in to change notification settings - Fork 471
/
libraries.css
107 lines (90 loc) · 1.83 KB
/
libraries.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
margin: 0;
}
.typeahead {
padding: 0px;
margin: 0px;
}
.typeahead-input {
color: white !important;
}
.typeahead-list {
position: absolute;
}
.library-btn {
background-color: #D8D8D8;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .45);
border-radius: 2;
height: 24px;
width: 222px;
margin: 5px;
}
.library-btn:active {
background-color: #DEDEDE;
}
.library-btn-primary {
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .45);
border: none;
height: 24px;
width: 222px;
margin: 5px;
background-color: #677DFF;
color: white !important;
}
.signout:hover {
background-color: #D8D8D8;
}
.react-autosuggest__container {
position: relative;
visibility: visible;
}
.react-autosuggest__input {
width: 100%;
height: 30px;
padding: 10px 20px;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
border: 1px solid #aaa;
border-radius: 4px;
-webkit-appearance: none;
background-color: rgba(216, 216, 216, .21);
}
.react-autosuggest__input--focused {
outline: none;
}
.react-autosuggest__input::-ms-clear {
display: none;
}
.react-autosuggest__input--open {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.react-autosuggest__suggestions-container {
display: none;
}
.react-autosuggest__suggestions-container--open {
display: block;
position: absolute;
width: 100%;
border: 1px solid #aaa;
background-color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
z-index: 2;
}
.react-autosuggest__suggestions-list {
margin: 0;
padding: 0;
list-style-type: none;
}
.react-autosuggest__suggestion {
cursor: pointer;
padding: 10px 20px;
}
.react-autosuggest__suggestion--highlighted {
background-color: #ddd;
}