-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (41 loc) · 817 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (41 loc) · 817 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
42
43
44
45
46
47
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to right, #74ebd5, #9face6);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background: white;
padding: 25px;
width: 320px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.search-box {
margin-bottom: 20px;
}
input {
padding: 8px;
width: 70%;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 8px 12px;
border: none;
border-radius: 5px;
background-color: #4facfe;
color: white;
cursor: pointer;
}
button:hover {
background-color: #00c6ff;
}
.weather-box p {
margin: 6px 0;
}