imweijh commited on
Commit
52ca65d
·
verified ·
1 Parent(s): 41bc970

Upload styles/globals.css with huggingface_hub

Browse files
Files changed (1) hide show
  1. styles/globals.css +37 -0
styles/globals.css ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ html,
6
+ body {
7
+ padding: 0;
8
+ margin: 0;
9
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
10
+ Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
11
+ background-color: #000;
12
+ }
13
+
14
+ * {
15
+ box-sizing: border-box;
16
+ }
17
+
18
+ canvas {
19
+ border: 2px solid #333;
20
+ border-radius: 8px;
21
+ }
22
+
23
+ .game-button {
24
+ @apply bg-green-600 hover:bg-green-700 text-white font-bold py-2 px-4 rounded transition-colors duration-200;
25
+ }
26
+
27
+ .game-button:disabled {
28
+ @apply bg-gray-600 hover:bg-gray-600 cursor-not-allowed;
29
+ }
30
+
31
+ .score-display {
32
+ @apply text-2xl font-bold text-white;
33
+ }
34
+
35
+ .control-button {
36
+ @apply bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg transition-colors duration-200 active:bg-blue-800;
37
+ }