Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

parametersGame.css 844 B

You have to be logged in to leave a comment. Sign In
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
43
44
45
46
47
  1. body {
  2. font-family: Arial, sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. background-color: #f4f4f4;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. height: 100vh;
  10. }
  11. #create-game-form {
  12. background: #fff;
  13. padding: 20px;
  14. border-radius: 5px;
  15. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  16. }
  17. label {
  18. display: block;
  19. margin-top: 10px;
  20. }
  21. input[type="text"],
  22. textarea,
  23. select {
  24. width: 100%;
  25. padding: 8px;
  26. margin-top: 5px;
  27. border-radius: 4px;
  28. border: 1px solid #ddd;
  29. box-sizing: border-box; /* Include padding in width */
  30. }
  31. button[type="submit"] {
  32. background-color: #5cb85c;
  33. color: white;
  34. padding: 10px 15px;
  35. border: none;
  36. border-radius: 4px;
  37. cursor: pointer;
  38. margin-top: 10px;
  39. }
  40. button[type="submit"]:hover {
  41. background-color: #4cae4c;
  42. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...