-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (138 loc) · 4.43 KB
/
index.html
File metadata and controls
147 lines (138 loc) · 4.43 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Math Note | Knowledge Hub</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&family=Poppins:wght@600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
font-family: 'Roboto', sans-serif;
padding: 2rem;
}
.title {
text-align: center;
margin: 3rem 0;
opacity: 0;
animation: fadeInUp 0.8s ease-out forwards;
}
.title b {
font-family: 'Poppins', sans-serif;
font-size: 2.8rem;
color: #2c3e50;
letter-spacing: 1.5px;
position: relative;
display: inline-block;
}
.title b::after {
content: '';
display: block;
width: 60%;
height: 3px;
background: #3498db;
margin: 0.5rem auto 0;
border-radius: 2px;
}
.button-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2rem;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
opacity: 0;
animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.Button {
background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
border: none;
border-radius: 16px;
color: white;
padding: 1.5rem 2.5rem;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
0 1px 3px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
}
.Button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
120deg,
transparent,
rgba(255, 255, 255, 0.3),
transparent
);
transition: 0.6s;
}
.Button:hover {
transform: translateY(-3px);
box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1),
0 3px 6px rgba(0, 0, 0, 0.08);
}
.Button:hover::before {
left: 100%;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 480px) {
.title b {
font-size: 2rem;
}
.Button {
padding: 1.2rem 2rem;
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="title">
<b>Math Note</b>
</div>
<div class="button-container">
<a href="Math/Math_List.html">
<button class="Button">
📘 Math Knowledge
</button>
</a>
<button class="Button" disabled>
🔍 Informatics Knowledge
<span style="font-size:0.8em; opacity:0.8">(Coming Soon)</span>
</button>
<a href="login.html">
<button class="Button">
Login Math Note
</button>
</a>
</div>
</body>
</html>