|
13 | 13 | function counter(intervel, max, step) { |
14 | 14 | let interval = setInterval(() => { |
15 | 15 | count = count + step > max ? max : count + step; |
16 | | - console.log(count + ' ' + interval); |
17 | 16 | finalText = count.toString() + ' ' + returnRandomEmoji(); |
18 | 17 | if (count >= max) { |
19 | 18 | clearInterval(interval); |
|
27 | 26 | </script> |
28 | 27 |
|
29 | 28 | <div class="dark:bg-[#070704] bg-[#EDEDDE]"> |
30 | | - <div class="flex flex-col h-screen items-center justify-center"> |
31 | | - <a |
| 29 | + <div class="flex flex-col h-screen items-center justify-center bg-[#07070d] rounded-sm"> |
| 30 | + <div class="bg-[#4e6638] p-6 rounded-xl"> |
| 31 | + <a |
32 | 32 | href="https://github.com/RandomCoderOrg/ubuntu-on-android" |
33 | 33 | target="_blank" |
34 | 34 | referrerpolicy="no-referrer" |
35 | | - class="text-[#070704] dark:text-[#ededde] text-6xl hover:underline dark:decoration-[#705091] text-bold font-mono" |
| 35 | + class="text-[#070704] dark:text-[#ededde] text-4xl hover:underline dark:decoration-[#EDEDDE] text-bold font-mono" |
36 | 36 | >UDROID Downloads</a |
37 | 37 | > |
38 | | - <p class="font-light font-mono text-3xl text-[#070704] dark:text-[#ededde]">{finalText}</p> |
| 38 | + <p class="font-light text-center font-mono text-3xl text-[#070704] dark:text-[#ededde]">{finalText}</p> |
| 39 | + </div> |
39 | 40 | </div> |
40 | 41 | </div> |
0 commit comments