-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBarclaySearchEngineStyles.css
More file actions
198 lines (168 loc) · 3.54 KB
/
BarclaySearchEngineStyles.css
File metadata and controls
198 lines (168 loc) · 3.54 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
@font-face {
font-family: 'Kilroy';
src: url(https://delivercdn.pages.dev/barclay/fonts/kilroy.ttf);
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Kilroy Medium';
src: url(https://delivercdn.pages.dev/barclay/fonts/kilroy-medium.ttf);
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Kilroy Bold';
src: url(https://delivercdn.pages.dev/barclay/fonts/kilroy-bold.ttf);
font-weight: 700;
font-style: normal;
}
.logo {
width: auto;
height: 60px;
}
body {
font-family: 'Kilroy', sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
background: #ffffff;
margin: auto;
padding: 20px;
width: 80%;
overflow: hidden;
border-radius: 16px;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
h1 {
font-family: 'Kilroy Bold', Arial, sans-serif;
color: #202124;
text-align: center;
}
h3 {
font-family: 'Kilroy';
font-weight: 400;
margin-top: 10px;
margin-bottom: 10px;
}
#search-form {
margin-bottom: 20px;
display: flex;
justify-content: center;
}
#search-form input[type="text"] {
font-family: 'Kilroy', Arial, sans-serif;
font-size: 16px;
margin-right: 10px;
padding: 10px;
width: 80%;
border: 1px solid #e1e1e1;
border-radius: 100px;
outline: none;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
transition: border-color 0.3s;
}
#search-form input[type="text"]:focus {
border-color: #3b78e8;
}
#search-form input[type="text"]::placeholder {
color: #5f6368;
}
#search-form button {
font-family: 'Kilroy', Arial, sans-serif;
font-size: 16px;
color: #ffffff;
padding: 10px 20px;
display: inline-block;
text-align: center;
background-color: #3b78e8;
border: none;
cursor: pointer;
text-decoration: none;
border-radius: 100px;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
#results {
margin-top: 20px;
}
.result-item {
margin-bottom: 20px;
padding: 10px;
border-bottom: 1px solid #ebebeb;
}
.result-item a {
font-family: 'Kilroy', Arial, sans-serif;
color: #1967d2;
text-decoration: none;
}
.result-item a:hover {
text-decoration: underline;
}
.result-item p {
margin-bottom: 10px;
}
.result-url {
font-family: 'Kilroy', Arial, sans-serif;
font-size: 14px;
color: #202124;
word-break: break-all;
}
.pagination {
margin-top: 20px;
display: flex;
justify-content: center;
}
.pagination button {
font-family: 'Kilroy', Arial, sans-serif;
color: #ffffff;
margin: 0 5px;
padding: 10px 20px;
background: #1a73e8;
border: none;
border-radius: 100px;
cursor: pointer;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
.pagination button:disabled {
color: #9aa0a6;
background: #ffffff;
cursor: not-allowed;
}
.pagination-info {
font-size: 14px;
color: #9aa0a6;
margin-top: 10px;
text-align: center;
}
.total-results {
font-size: 14px;
color: #9aa0a6;
margin-top: 10px;
text-align: center;
}
::selection {
background-color: #3b78e8;
color: #ffffff;
}
::-moz-selection {
background-color: #3b78e8;
color: #ffffff;
}
::-webkit-scrollbar {
background-color: #f2f2f2;
}
::-webkit-scrollbar-track {
background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
background-color: #e0e0e0;
border-radius: 10px;
border: 3px solid #f2f2f2;
}
::-webkit-scrollbar-thumb:hover {
background-color: #9aa0a6;
}
::-webkit-scrollbar-thumb:active {
background-color: #5f6368;
}