forked from deepspacerobots/code-test-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 638 Bytes
/
style.css
File metadata and controls
41 lines (35 loc) · 638 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
h1 {
text-align: center;
color: #333;
}
.form {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.input-group {
display: flex;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px 0 0 5px;
width: 70%;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #ff7b00;
color: #fff;
border: none;
border-radius: 0 5px 5px 0;
cursor: pointer;
}
/* Styles for location details */
.location-details {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 10px;
}