-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 997 Bytes
/
style.css
File metadata and controls
62 lines (54 loc) · 997 Bytes
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
html{
box-sizing: border-box;
background-color: #E4E1D3;
font-family: 'helvetica neue';
font-size: 20px;
/*font-weight: 200;*/
}
*, *:before, *:after {
box-sizing: inherit;
}
input {
width: 100%;
padding: 20px;
color: #B382B0;
}
.hl {
background-color: #B382B0;
color: #fbf8ea;
}
.search-form {
max-width: 600px;
margin: 50px auto;
}
input.search {
font-size: 30px;
text-align: center;
outline: 0;
position: relative;
width: 110%;
left: -5%;
border: 10px solid #EFECDE;
box-shadow: 0px 0px 5px 0px rgba(160,156,146,1);
}
.suggestions {
margin: 0;
padding: 0;
position: relative;
}
.suggestions li {
background-color: #fbf8ea;
color: #A09C92;
list-style: none;
padding: 10px;
margin: 0;
margin-top:6px;
display:flex;
justify-content:space-between;
text-transform:capitalize;
box-shadow: 0px 0px 5px 0px rgba(160,156,146,1);
background: linear-gradient(to left, #fbf8ea 0%,#EFECDE 100%);
}
.info {
font-weight: 200;
}