Main, pause, options, and in-game menu systems wired up; ready for gameplay
This commit is contained in:
42
assets/globals.rcss
Normal file
42
assets/globals.rcss
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user