-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (73 loc) · 1.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
*{
margin: 0;
}
body{
display: flex;
flex-direction: column;
height: 100vh;
}
.header{
display: flex;
justify-content: space-between;
padding: 20px 30px;
align-items:center;
}
.header a{
margin-right:20px;
color: rgba(0, 0, 0, 0.87);
font-size: 15px ;
text-decoration: inherit;
}
.header a:hover{
text-decoration: underline;
}
.header_right{
display:flex;
align-items:center;
min-width: 13px;
justify-content: space-between;
}
.header_right.header_apps{
margin-right: 10px;
}
.mainBody{
flex: 1;
display: flex;
flex-direction: column;
margin-top: 12%;
}
.mainBody img{
object-fit: contain;
height: 100px;
}
.search_input{
display: flex;
align-items: center;
border: 1px solid lightgrey;
height: 30px;
padding: 10px 20px;
border-radius:999px;
width:75vw;
margin: 0 auto;
margin-top: 40px;
max-width: 560px;
}
.search_input input {
flex:1;
padding: 10px 20px;
border:none;
outline:none;
}
.search_buttons{
margin-top:30px;
display: flex;
justify-content: center;
}
.search_buttons button{
margin:5px;
padding:10px 15px;
background-color: #f8f8f8;
outline: none;
border: none;
cursor:pointer;
}