summaryrefslogtreecommitdiff
path: root/isometric
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 /isometric
parent5734c40eac6c69bbb9adb1c625c08461f33524d5 (diff)
Just use basic html
Diffstat (limited to 'isometric')
-rw-r--r--isometric/index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/isometric/index.html b/isometric/index.html
index 47dfbde..d5bf032 100644
--- a/isometric/index.html
+++ b/isometric/index.html
@@ -79,10 +79,39 @@
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
margin-bottom: 1rem;
}
+
+ .back-link {
+ position: absolute;
+ top: 20px;
+ left: 20px;
+ z-index: 100;
+ color: white;
+ text-decoration: none;
+ background: rgba(0, 0, 0, 0.5);
+ padding: 10px 15px;
+ border-radius: 5px;
+ font-family: 'Arial', sans-serif;
+ font-size: 14px;
+ transition: all 0.3s ease;
+ display: flex;
+ align-items: center;
+ gap: 5px;
+ }
+
+ .back-link:hover {
+ background: rgba(255, 255, 255, 0.2);
+ }
+
+ .back-link::before {
+ content: "←";
+ font-size: 18px;
+ }
</style>
</head>
<body>
+ <a href="../index.html" class="back-link">Back to Home</a>
+
<div class="content">
<h1>Isometric Triangles</h1>
</div>