-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (70 loc) · 1.39 KB
/
style.css
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
*{
margin: 0;
padding: 0;
font-family: 'Poppins',sans-serif;
}
.search h1{
font-size: 3.5rem;
text-align: center;
font-weight: 400;
margin-top: 10px;
margin-bottom: 20px;
}
.head {
font-size: 3.5rem;
text-align: center;
background-color: rgba(160, 183, 105, 0.037);
font-weight: 400;
/* margin-top: 20px; */
margin-bottom: -50px;
z-index: -1;
padding: 6px 2px;
}
.search{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 10px;
background-color: bisque;
height: 50vh;
margin-top: -10px;
}
.search .com{
padding: 10px 20px;
outline: none;
font-size: 1rem;
margin-bottom: 10px;
border-radius: 9px;
border: 0;
box-shadow: 0 0 10px rgba(118, 118, 118, 0.1);
}
.search button{
background-color: rgba(94, 129, 0, 0.079);
cursor: pointer;
}
.show{
height: 51vh;
justify-content: center;
align-items: center;
background-color: rgba(160, 183, 105, 0.037);
font-size: 1.7rem;
}
.result{
margin-left: 43%;
margin-top: 50px;
background-color: rgb(42, 39, 39);
margin-bottom: -23px;
color: #fff;
border-radius: 5px;
text-align: center;
justify-content: center;
align-items: center;
width: 22vh;
padding: 10px 30px;
}
@media (max-width: 390px) {
.result{
margin-left: 20%;
}
}