-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
13 lines (12 loc) · 821 Bytes
/
Copy pathstyle.css
File metadata and controls
13 lines (12 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
/* style.css */
/* This CSS file styles the menu buttons to have a pill (oval) shape and a drop shadow */
.menu-button {
-fx-background-color: white; /* Button background color */
-fx-text-fill: #003366; /* Button text color */
-fx-font-size: 24px; /* Font size for the button text */
-fx-font-weight: bold; /* Bold text style */
-fx-padding: 20px 80px; /* Padding with extra horizontal space for an elongated (pill) shape */
-fx-background-radius: 1600px; /* Large radius ensures a fully rounded, pill-like appearance */
-fx-border-radius: 1500px; /* Ensures the border matches the pill shape */
-fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.3), 10, 0, 2, 2); /* Adds a drop shadow for depth */
}