Main, pause, options, and in-game menu systems wired up; ready for gameplay

This commit is contained in:
2026-08-24 22:49:16 -05:00
parent 4dacb370a6
commit 0fe31615c5
12 changed files with 327 additions and 88 deletions

42
assets/globals.rcss Normal file
View File

@@ -0,0 +1,42 @@
body {
--primary-color: #446043;
--primary-background-color: #2c3e2b;
--text-color: #ffffea;
font-family: rmlui-debugger-font;
font-size: 16dp;
color: var(--text-color);
background-color: #ffffff00;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
margin-bottom: 15px;
}
.hidden {
display: none;
}
.menu-btn {
display: block;
padding: 8px;
width: 200dp;
text-align: center;
background-color: var(--primary-color);
border: 1px #ffffff00;
font-size: 22dp;
}
.menu-btn:hover {
background-color: #4a7eb5;
}
.menu-btn:active {
background-color: #2e4e70;
}