-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (36 loc) · 721 Bytes
/
styles.css
File metadata and controls
41 lines (36 loc) · 721 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
body {
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: 30px;
border-radius: 12px;
width: 300px;
text-align: center;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
input {
width: 90%;
padding: 10px;
margin: 10px 0;
}
button {
padding: 10px 15px;
border: none;
background: #4CAF50;
color: white;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background: #45a049;
}
.weather-box {
margin-top: 20px;
font-size: 16px;
}