-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (63 loc) · 1.21 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (63 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
#background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #74ebd5, #acb6e5);
text-align: center;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background:linear-gradient(135deg, #74ebd5, #acb6e5);
padding: 25px;
border-radius: 12px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
max-width: 400px;
width: 100%;
text-align: center;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
color: #333;
}
input {
width: 80%;
padding: 10px;
border: 2px solid #ccc;
border-radius: 8px;
font-size: 16px;
outline: none;
}
button {
margin-top: 15px;
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #0056b3;
}
#weather-result {
margin-top: 20px;
padding: 15px;
font-size: 18px;
background: #f1f1f1;
border-radius: 8px;
display: none;
}