-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (54 loc) · 1.65 KB
/
Copy pathstyles.css
File metadata and controls
59 lines (54 loc) · 1.65 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
#quick-google-search-icon {
all: initial;
position: fixed !important;
width: 40px !important;
height: 40px !important;
min-width: 40px !important;
min-height: 40px !important;
box-sizing: border-box !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 0 !important;
border: 1px solid rgba(255, 255, 255, 0.3) !important;
border-radius: 999px !important;
background: linear-gradient(135deg, #2563eb, #16a34a) !important;
color: #ffffff !important;
cursor: pointer !important;
z-index: 2147483647 !important;
opacity: 0 !important;
visibility: hidden !important;
transform: scale(0.86) !important;
transition:
opacity 140ms ease,
transform 140ms ease,
visibility 140ms ease,
box-shadow 140ms ease !important;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25) !important;
appearance: none !important;
user-select: none !important;
contain: layout style paint !important;
}
#quick-google-search-icon.quick-google-search-icon--visible {
opacity: 1 !important;
visibility: visible !important;
transform: scale(1) !important;
}
#quick-google-search-icon:hover {
transform: scale(1.06) !important;
box-shadow: 0 10px 28px rgba(37, 99, 235, 0.32) !important;
}
#quick-google-search-icon:active {
transform: scale(0.96) !important;
}
#quick-google-search-icon:focus-visible {
outline: 3px solid rgba(59, 130, 246, 0.45) !important;
outline-offset: 3px !important;
}
#quick-google-search-icon svg {
width: 20px !important;
height: 20px !important;
display: block !important;
color: currentColor !important;
pointer-events: none !important;
}