made button big

This commit is contained in:
hexahigh 2022-12-16 14:49:14 +01:00
parent 6237119f2b
commit d30566ac70

View File

@ -12,6 +12,7 @@
</style> </style>
<script> <script>
let speed = 1000 let speed = 1000
setInterval(addKrydder, speed);
function changespeed() { function changespeed() {
speed -= 100; speed -= 100;
@ -47,7 +48,7 @@
</script> </script>
</head> </head>
<body> <body>
<button onclick="changespeed()">FASTER</button> <button onclick="changespeed()" style="font-size: 20px; padding: 10px 20px">Nam nam Krydder :D</button>
<div id="krydder-container"></div> <div id="krydder-container"></div>
</body> </body>
</html> </html>