-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (58 loc) · 1.29 KB
/
style.css
File metadata and controls
69 lines (58 loc) · 1.29 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
html {
font-family: monospace, sans-serif;
background-repeat: no-repeat;
background-image: url('background.jpg');
background-size: cover;
background-attachment: fixed;
font-size: 23px;
font-weight: normal;
}
.search-form {
max-width:400px;
margin:50px auto;
}
input{
width: 100%;
padding: 15px;
outline: none;
}
input.search {
margin: 0;
text-align: center;
border: 6px solid #F7F7F7;
width: 108%;
left: -10%;
position: relative;
top: 10px;
z-index: 2;
border-radius: 15px;
font-size: 17px;
}
.suggestions {
margin: 0;
padding: 0;
position: relative;
}
.suggestions li {
background:white;
list-style: none;
border-bottom: 3px solid #D8D8D8;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
margin:0;
padding:15px;
transition:background 0.2s;
display:flex;
justify-content:space-between;
text-transform: capitalize;
}
.suggestions li:nth-child(even) {
transform: perspective(120px) translateY(4px) scale(1.001);
background: linear-gradient(to bottom, #ffffff 0%,#EFEFEF 100%);
}
.suggestions li:nth-child(odd) {
transform: perspective(120px) translateY(3px);
background: linear-gradient(to top, #ffffff 0%,#EFEFEF 100%);
}
.name {
font-size: 20px
}