forked from mendsalbert/http3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (74 loc) · 1.21 KB
/
Copy pathstyles.css
File metadata and controls
85 lines (74 loc) · 1.21 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f0f0f0;
}
header {
background-color: #4a90e2;
color: white;
text-align: center;
padding: 1rem;
}
h1 {
margin: 0;
}
main {
flex-grow: 1;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
.search-bar {
display: flex;
width: 100%;
max-width: 600px;
margin-bottom: 2rem;
}
#addressInput {
flex-grow: 1;
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px 0 0 4px;
}
#loadButton {
padding: 0.5rem 1rem;
font-size: 1rem;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
}
#loadButton:hover {
background-color: #3a7bc8;
}
.content-area {
width: 100%;
max-width: 800px;
background-color: white;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
min-height: 400px;
padding: 1rem;
}
#loadingIndicator {
text-align: center;
font-style: italic;
color: #666;
}
.hidden {
display: none;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
margin-top: auto;
}