forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (85 loc) · 1.75 KB
/
Copy pathstyles.css
File metadata and controls
105 lines (85 loc) · 1.75 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
93
94
95
96
97
98
99
100
101
102
103
104
105
/* SEARCH BAR STYLES */
.ais-SearchBox {
margin-bottom: 1em;
}
.ais-SearchBox-input {
padding: 1rem 1em;
width: 100%;
border-radius: 0.375rem;
border: 1px solid #353535;
background: rgba(var(--foreground-rgb), 0.1);
color: white;
outline: none;
font-size: 1rem; /* 16px */
line-height: 1.5rem; /* 24px */
}
.ais-SearchBox-input:hover {
border: 1px solid #464646;
}
.ais-SearchBox-input:focus {
border: 1px solid #6f6f6f;
}
.ais-InstantSearch {
max-width: 960px;
width: 100%;
display: block;
overflow: hidden;
margin: 0 auto;
}
.ais-Hits-list .ais-Hits-item {
margin-left: 0;
width: 100%;
}
.ais-Hits-item img {
margin-right: 1em;
}
.ais-InstantSearch .ais-Hits-list {
display: flex;
flex-direction: column;
margin-bottom: 1em;
margin-left: 0;
margin-top: 0;
}
@media (max-width: 768px) {
.ais-SearchBox-input {
padding: 0.6rem 0.7em;
}
}
/* HITS STYLES */
.ais-Highlight-highlighted {
color: #2bc3f1;
background-color: #00a3ed40;
}
/* PAGINATION STYLES */
.ais-Pagination .ais-Pagination-list {
display: flex;
gap: 10px;
}
.ais-Pagination .ais-Pagination-item {
border-radius: 5px;
cursor: pointer;
}
.ais-Pagination .ais-Pagination-item .ais-Pagination-link {
width: 100%;
display: block;
padding: 8px 20px;
}
.ais-Pagination .ais-Pagination-item--disabled {
color: #5f5f5f;
cursor: not-allowed;
}
.ais-Pagination .ais-Pagination-item--selected {
border: 1px solid #373737;
color: white;
}
.ais-Pagination .ais-Pagination-item:hover {
background-color: #27272a;
}
.ais-Pagination .ais-Pagination-item--selected:hover {
background-color: transparent;
cursor: not-allowed;
}
.ais-Pagination .ais-Pagination-item--disabled:hover {
background-color: transparent;
cursor: not-allowed;
}