summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-02-27 11:17:31 +0100
committerYuval Adam <_@yuv.al>2025-02-27 11:17:31 +0100
commit2320997f086b18b8c79434a86f44b3a1d0e64398 (patch)
treebf010fd4dbc0c4b5150456ca74c66411a6a71bee /index.html
parent5734c40eac6c69bbb9adb1c625c08461f33524d5 (diff)
Just use basic html
Diffstat (limited to 'index.html')
-rw-r--r--index.html102
1 files changed, 102 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..52dc26c
--- /dev/null
+++ b/index.html
@@ -0,0 +1,102 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Vibes</title>
+ <style>
+ body {
+ font-family: 'Helvetica Neue', Arial, sans-serif;
+ background-color: #121212;
+ color: #ffffff;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 100vh;
+ text-align: center;
+ }
+
+ .container {
+ max-width: 800px;
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, #ff00aa, #00aaff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-clip: text;
+ }
+
+ p {
+ font-size: 1.2rem;
+ line-height: 1.6;
+ margin-bottom: 2rem;
+ color: #aaaaaa;
+ }
+
+ .experiments {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .experiment-card {
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 10px;
+ padding: 1.5rem;
+ transition: all 0.3s ease;
+ text-decoration: none;
+ color: white;
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ }
+
+ .experiment-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
+ background: rgba(255, 255, 255, 0.1);
+ border-color: rgba(255, 255, 255, 0.2);
+ }
+
+ .experiment-title {
+ font-size: 1.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .experiment-description {
+ color: #aaaaaa;
+ font-size: 1rem;
+ }
+
+ footer {
+ margin-top: 4rem;
+ color: #666666;
+ font-size: 0.9rem;
+ }
+ </style>
+</head>
+<body>
+ <div class="container">
+ <h1>Vibes</h1>
+ <p>A collection of creative web experiments and visual experiences.</p>
+
+ <div class="experiments">
+ <a href="isometric/index.html" class="experiment-card">
+ <div class="experiment-title">Isometric Triangles</div>
+ <div class="experiment-description">
+ Dynamic background with animated geometric shapes in an isometric perspective.
+ </div>
+ </a>
+ </div>
+
+ <footer>
+ &copy; 2025 Vibes
+ </footer>
+ </div>
+</body>
+</html>