PriyaMishra commited on
Commit
62ec89b
Β·
verified Β·
1 Parent(s): 63f5af0

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +80 -18
index.html CHANGED
@@ -1,19 +1,81 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Ayurvedic Clock with Emojis</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background: #fff7e6;
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ height: 100vh;
15
+ }
16
+
17
+ .clock {
18
+ width: 400px;
19
+ height: 400px;
20
+ border-radius: 50%;
21
+ position: relative;
22
+ background: conic-gradient(
23
+ #a8dadc 0% 25%, /* Kapha */
24
+ #f1faee 25% 50%, /* Pitta */
25
+ #ffb703 50% 75%, /* Vata */
26
+ #a8dadc 75% 100% /* Kapha again */
27
+ );
28
+ box-shadow: 0 0 10px rgba(0,0,0,0.2);
29
+ }
30
+
31
+ .center-label {
32
+ position: absolute;
33
+ top: 50%;
34
+ left: 50%;
35
+ transform: translate(-50%, -50%);
36
+ text-align: center;
37
+ font-weight: bold;
38
+ font-size: 1.2em;
39
+ background: white;
40
+ padding: 10px;
41
+ border-radius: 10px;
42
+ }
43
+
44
+ .label {
45
+ position: absolute;
46
+ width: 110px;
47
+ text-align: center;
48
+ font-size: 0.85em;
49
+ line-height: 1.4em;
50
+ }
51
+
52
+ /* Positioning labels */
53
+ .l1 { top: 5%; left: 50%; transform: translateX(-50%); }
54
+ .l2 { top: 20%; left: 82%; transform: translate(-50%, -50%); }
55
+ .l3 { top: 50%; left: 95%; transform: translate(-50%, -50%); }
56
+ .l4 { top: 80%; left: 82%; transform: translate(-50%, -50%); }
57
+ .l5 { bottom: 5%; left: 50%; transform: translateX(-50%); }
58
+ .l6 { top: 80%; left: 18%; transform: translate(-50%, -50%); }
59
+ .l7 { top: 50%; left: 5%; transform: translate(-50%, -50%); }
60
+ .l8 { top: 20%; left: 18%; transform: translate(-50%, -50%); }
61
+
62
+ </style>
63
+ </head>
64
+ <body>
65
+
66
+ <div class="clock">
67
+ <div class="center-label">πŸ•‰οΈ<br>Ayurvedic<br>Daily Rhythm</div>
68
+
69
+ <div class="label l1">πŸŒ… 6–9 AM<br>Kapha πŸ§˜β€β™‚οΈ<br>Exercise, Energize</div>
70
+ <div class="label l2">🌞 9–12 PM<br>Pitta πŸ’Ό<br>Work, Focus</div>
71
+ <div class="label l3">🍽️ 12–3 PM<br>Pitta πŸ”₯<br>Main Meal, Digest</div>
72
+ <div class="label l4">πŸšΆβ€β™‚οΈ 3–6 PM<br>Vata πŸ’¬<br>Socialize, Move</div>
73
+ <div class="label l5">πŸŒ‡ 6–9 PM<br>Kapha πŸ›€<br>Relax, Wind Down</div>
74
+ <div class="label l6">πŸŒ™ 9–12 AM<br>Pitta πŸ›οΈ<br>Sleep, Process</div>
75
+ <div class="label l7">πŸ›Œ 12–3 AM<br>Pitta 🧠<br>Deep Sleep, Repair</div>
76
+ <div class="label l8">πŸŒ„ 3–6 AM<br>Vata ✨<br>Meditate, Create</div>
77
+
78
+ </div>
79
+
80
+ </body>
81
  </html>