aboutsummaryrefslogtreecommitdiff
path: root/src/gui/style.css
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-05-12 02:03:30 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-05-12 02:03:30 -0400
commit7f4070564af6cc9ba1eb79f3730eb0213eea3b11 (patch)
tree3e3b65e3335c973bc8c1f05827237146c0a2e649 /src/gui/style.css
parentad89ab07efd535dc0df280e982139db774558503 (diff)
downloadNPEhero-7f4070564af6cc9ba1eb79f3730eb0213eea3b11.tar.gz
NPEhero-7f4070564af6cc9ba1eb79f3730eb0213eea3b11.tar.bz2
NPEhero-7f4070564af6cc9ba1eb79f3730eb0213eea3b11.zip
big gui stuff
Diffstat (limited to 'src/gui/style.css')
-rw-r--r--src/gui/style.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gui/style.css b/src/gui/style.css
new file mode 100644
index 0000000..3e18f9d
--- /dev/null
+++ b/src/gui/style.css
@@ -0,0 +1,21 @@
+Button {
+ -fx-background-color: rgba(0, 0, 0, 0.5);
+ -fx-text-fill: white;
+ -fx-padding: .5em;
+ -fx-font-size: 25;
+ -fx-background-radius: 10;
+}
+
+Button:hover {
+ -fx-background-color: rgb(255, 255, 255);
+ -fx-text-fill: rgb(0, 0, 0);
+}
+
+Button:pressed {
+ -fx-background-color: rgb(231, 231, 231);
+ -fx-text-fill: rgb(0, 0, 0);
+}
+
+.pad {
+ -fx-padding: 1em;
+} \ No newline at end of file