File size: 1,930 Bytes
25d8b9e
996c9c4
 
 
 
 
 
 
25d8b9e
996c9c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25d8b9e
996c9c4
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WeatherSphere - Interactive Weather Dashboard</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        .weather-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .sun {
            background: radial-gradient(circle, #f6e05e 30%, transparent 70%);
            box-shadow: 0 0 60px #f6e05e;
        }
        .rain-drop {
            position: absolute;
            width: 2px;
            height: 10px;
            background: linear-gradient(to bottom, transparent, #93c5fd);
            border-radius: 0 0 50% 50%;
        }
        .cloud {
            position: relative;
            width: 100px;
            height: 40px;
            background: #e5e7eb;
            border-radius: 50px;
        }
        .cloud:before, .cloud:after {
            content: '';
            position: absolute;
            background: #e5e7eb;
            border-radius: 50%;
        }
        .cloud:before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 10px;
        }
        .cloud:after {
            width: 30px;
            height: 30px;
            top: -15px;
            right: 15px;
        }
    </style>
</head>
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen font-sans">
    <div class="container mx-auto px-4 py-8">

</html>