forked from NITDgpOS/Fearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
131 lines (112 loc) · 2.11 KB
/
popup.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#header {
margin-bottom: 30px;
font-family: monospace;
font-size: 200%;
height: 60px;
width: 385px;
text-align: center;
}
body {
min-width: 379px;
font-size: 100%;
font-family: "sans-serif", Arial, Helvetica;
background-color: white;
}
#searchButton {
border: 0px;
background: none;
opacity: 0.6;
cursor: pointer;
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
#searchButton:hover {
opacity: 1;
cursor: pointer;
}
#searchIcon {
height: 30px;
width: 30px;
}
#query {
border: 0px;
padding: 10px;
}
input:focus {
outline: none;
}
#main form table {
width: 385px;
color: black;
}
#main #query {
font-size: 100%;
width: 270px;
}
#main form table tr td {
height: 40px;
text-align: center;
}
#searchButton {
style: none;
}
#suggest {
position: relative;
height: 40px;
margin: 0px auto;
}
#suggest-label {
border: 1px solid #FF5A00;
opacity: 0.5;
color: #FF5A00;
padding: 4px;
font-size: 75%;
text-align: center;
display: inline-block;
border-radius: 2px;
transition: all 0.5s;
}
#suggest-label:hover {
opacity: 1;
}
.card {
padding: 4px;
background: #fff;
border-radius: 2px;
display: inline-flex;
margin: 1rem;
position: relative;
}
#searchBox {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
#searchBox:hover {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
#searchBox:focus {
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
#searchWarning {
border: 1px solid tomato;
color: tomato;
padding: 4px;
font-size: 75%;
text-align: center;
position: absolute;
margin: 0px auto;
border-radius: 2px;
left: 30%;
bottom: 40%;
}
#checkboxWarning {
border: 1px solid tomato;
color: tomato;
padding: 4px;
font-size: 75%;
text-align: center;
position: absolute;
margin: 0px auto;
border-radius: 2px;
left: 18%;
bottom: 6%;
}