work shop

This commit is contained in:
2026-05-19 21:29:29 +03:30
parent 54f96e8fb9
commit f10921b0a4
6 changed files with 46 additions and 18 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
.root {
-fx-background-color: #f5f5f5;
-fx-background-color: #fff0f0;
-fx-font-family: "DejaVu Sans", "Segoe UI", sans-serif;
}
+3 -3
View File
@@ -17,21 +17,21 @@
<HBox spacing="25" alignment="CENTER" HBox.hgrow="ALWAYS">
<VBox styleClass="card" prefWidth="200">
<Label text="Basic" styleClass="plan-name" />
<Label text="$9.99 / month" styleClass="price" />
<Label fx:id = "basicPriceLable" text="\$9.99 / month" styleClass="price" />
<Label text="Single user, basic features" styleClass="desc" wrapText="true" />
<Button text="Shop" onAction="#buyBasic" styleClass="shop-btn" />
</VBox>
<VBox styleClass="card" prefWidth="200">
<Label text="Pro" styleClass="plan-name" />
<Label text="$19.99 / month" styleClass="price" />
<Label fx:id = "proPriceLable" text="\$19.99 / month" styleClass="price" />
<Label text="Up to 5 users, advanced features" styleClass="desc" wrapText="true" />
<Button text="Shop" onAction="#buyPro" styleClass="shop-btn" />
</VBox>
<VBox styleClass="card" prefWidth="200">
<Label text="Enterprise" styleClass="plan-name" />
<Label text="Contact us" styleClass="price" />
<Label fx:id = "enterprisePriceLable" text="Contact us" styleClass="price" />
<Label text="Unlimited users, custom solutions" styleClass="desc" wrapText="true" />
<Button text="Shop" onAction="#buyEnterprise" styleClass="shop-btn" />
</VBox>
+1 -1
View File
@@ -1,5 +1,5 @@
.root {
-fx-background-color: #1a1a2e;
-fx-background-color: #10101d;
-fx-font-family: "DejaVu Sans", "Segoe UI", sans-serif;
}