Advertisement
Guest User

Untitled

a guest
Aug 6th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. FXML :
  2. <?xml version="1.0" encoding="UTF-8"?>
  3.  
  4. <?import javafx.scene.layout.AnchorPane?>
  5.  
  6.  
  7. <AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@../../css/light.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1">
  8. <children>
  9. <AnchorPane layoutX="161.0" layoutY="85.0" prefHeight="181.0" prefWidth="297.0" styleClass="test-pane" />
  10. </children>
  11. </AnchorPane>
  12.  
  13. CSS:
  14. .base{
  15. -fx-background-color: #0D1116;
  16. }
  17. .test-pane{
  18. -fx-background-color: #0D1116;
  19. -fx-border-color: #1A1D23;
  20. -fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.75), 10, 0.5, 0, 2);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement