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

home.css 1.8 KB

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
  2. @import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
  3. body {
  4. background: linear-gradient(to bottom, #89CFF0, #000080);
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. gap: 20px;
  9. padding-top: 180px; /* Adjusted padding to account for navbar */
  10. padding-bottom: 30px; /* Reduced padding from the bottom */
  11. min-height: 100vh;
  12. margin: 0;
  13. font-family: 'Press Start 2P', 'Roboto';
  14. }
  15. .navbar {
  16. position: fixed;
  17. top: 0;
  18. left: 10;
  19. width: 100%;
  20. background-color: #FFFFFF;
  21. box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  22. display: flex;
  23. justify-content: space-between;
  24. padding: 35px 10%;
  25. font-family: 'Roboto', sans-serif;
  26. }
  27. .navbar-menu a {
  28. text-decoration: none;
  29. margin-left: 20px;
  30. color: #333;
  31. transition: color 0.3s ease;
  32. }
  33. .navbar-menu a:hover {
  34. color: #3085c6;
  35. }
  36. .title-container {
  37. width: 80%;
  38. text-align: center;
  39. font-size: 20px;
  40. }
  41. .game-containers {
  42. display: flex;
  43. gap: 20px;
  44. width: 80%;
  45. justify-content: space-between;
  46. font-size: 20px;
  47. }
  48. .create-game-container, .find-game-container {
  49. background: linear-gradient(to bottom, #E5E9EC, #D4D8DB);
  50. padding: 20px;
  51. border-radius: 5px;
  52. width: 45%;
  53. text-align: center;
  54. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  55. border-radius: 25px;
  56. font-family: 'Press Start 2P', sans-serif;
  57. font-size: 90%;
  58. }
  59. button {
  60. margin-top: 20px;
  61. padding: 10px 20px;
  62. border: none;
  63. background-color: #3085c6;
  64. color: #ffffff;
  65. border-radius: 5px;
  66. cursor: pointer;
  67. transition: background-color 0.3s ease;
  68. font-family: 'Roboto', sans-serif;
  69. font-weight: 700;
  70. border-radius: 20px;
  71. }
  72. button:hover {
  73. background-color: #e23e3e;
  74. }
Tip!

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

Comments

Loading...