File size: 1,261 Bytes
cb40f63 | 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 | <!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeCraft Playground</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.editor {
height: 70vh;
}
.output {
height: 25vh;
}
.code-tab {
transition: all 0.3s ease;
}
.code-tab.active {
background-color: #3b82f6;
color: white;
}
.run-btn {
transition: all 0.2s ease;
}
.run-btn:hover {
transform: scale(1.05);
}
.run-btn:active {
transform: scale(0.95);
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<header class="bg-indigo-600 text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="code" class="w-8 h-8"></i
</body>
</html> |