-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (84 loc) · 1.3 KB
/
style.css
File metadata and controls
102 lines (84 loc) · 1.3 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
* {
box-sizing: border-box;
margin: 0;
}
ul {
list-style: none;
display: flex;
gap: 10px;
}
input{
width: 100% !important;
}
.wrapper {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.top-bar {
display: flex;
justify-content: end;
padding: 20px;
width: 100%;
}
.center-block {
text-align: center;
}
.center-block img {
width: 300px;
}
.center-block .search-zone {
display: flex;
background-color: #d0d0d2;
width: 550px;
padding: 15px;
border-radius: 30px;
margin-top: 15px;
margin-bottom: 15px;
gap: 8px;
}
.search-zone .search-input{
flex-grow: 1;
}
.search-zone .search-input input {
width: 100%;
background-color: transparent;
border: none;
outline: none;
}
input::placeholder {
color: #404040;
}
.search-zone .actions {
display: flex;
gap: 12px;
}
.center-block .buttons {
display: flex;
gap: 8px;
justify-content: center;
margin-bottom: 40px;
}
.center-block .buttons button {
padding: 4px;
background-color: #d0d0d2;
outline: none;
border: none;
}
.footer {
width: 100%;
}
.footer a {
text-decoration: none;
color: unset;
}
.location {
padding: 12px 24px;
}
.footer .menus {
display: flex;
justify-content: space-between;
padding: 12px 24px;
}