-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (38 loc) · 810 Bytes
/
style.css
File metadata and controls
43 lines (38 loc) · 810 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #74ebd5, #acb6e5);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.app {
background: #fff;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
text-align: center;
width: 90%;
max-width: 400px;
}
input {
width: 80%;
padding: 10px;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 8px;
}
button {
padding: 10px 20px;
background-color: #007BFF;
border: none;
color: white;
border-radius: 8px;
cursor: pointer;
}
.weather-result {
margin-top: 20px;
font-size: 1.2rem;
}