-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
112 lines (97 loc) · 3.11 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Give Identity to Your AI</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #e0eafc, #cfdef3); /* Soft blue gradient */
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
position: relative;
}
h1 {
color: #333;
text-align: center;
margin-bottom: 5px;
}
h2 {
color: #333;
text-align: center;
margin-bottom: 50px;
}
.dashboard {
display: flex;
flex-wrap: wrap;
justify-content: center;
max-width: 800px;
width: 100%;
gap: 20px;
}
.dashboard button {
flex: 1 1 calc(50% - 40px);
padding: 20px;
font-size: 20px;
font-weight: bold;
color: #ffffff;
background-color: #2980b9; /* Attractive blue */
border: none;
border-radius: 12px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
max-width: 300px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.dashboard button:hover {
background-color: #3498db; /* Lighter blue on hover */
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.dashboard button:active {
transform: translateY(0);
box-shadow: none;
}
.dashboard button span {
position: relative;
z-index: 2;
}
/* github star */
.github-star {
position: absolute;
top: 20px;
right: 20px;
}
@media(max-width: 600px) {
.dashboard button {
flex: 1 1 100%;
}
}
</style>
</head>
<body>
<!-- github button -->
<div class="github-star">
<a class="github-button" href="https://github.com/Barqawiz/Tamagotchi" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star Barqawiz/Tamagotchi on GitHub">Star</a>
</div>
<h1>Tamagotchi</h1>
<h2>Give Identity to Your AI</h2>
<div class="dashboard">
<button onclick="window.location.href='cat.html'"><span>Cat</span></button>
<button onclick="window.location.href='plant.html'"><span>Plant</span></button>
<button onclick="window.location.href='eyes.html'"><span>Eyes</span></button>
<button onclick="window.location.href='notion.html'"><span>Notion</span></button>
<!-- add more buttons -->
</div>
<!-- github script -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>