-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (78 loc) · 2.02 KB
/
index.html
File metadata and controls
94 lines (78 loc) · 2.02 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UniSyncing</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<meta name="google-site-verification" content="xovUPlrUhh0xxeMxNSw8DB5gokAhGkJVGzSdgGBAfPk" />
<!-- Original Styles from Canva Code -->
<style>
body {
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
* {
box-sizing: border-box;
}
.event-card {
transition: all 0.2s ease;
border: 1px solid;
}
.event-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.tab-button {
transition: all 0.2s ease;
}
.category-pill {
transition: all 0.2s ease;
border: 1px solid;
}
.category-pill:hover {
transform: translateY(-1px);
}
.create-button {
transition: all 0.2s ease;
}
.create-button:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.modal-backdrop {
backdrop-filter: blur(8px);
}
.slide-in {
animation: slideIn 0.25s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
input, select, textarea {
transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus {
outline: none;
border-color: currentColor;
}
</style>
<style>@view-transition { navigation: auto; }</style>
</head>
<body class="h-full">
<!-- App Container -->
<div id="app" class="h-full w-full"></div>
<!-- Modals Container -->
<div id="modals-container"></div>
<!-- Load the Module Script -->
<script type="module" src="/js/app.js"></script>
</body>
</html>