So this is the file structure im working with, I have the app.java as my main java file and I tried these two lines of code to no avail
scene.getStylesheets().add("mainpage.css");
scene.getStylesheets().add(getClass().getResource("mainpage.css").toExternalForm());
In the xml file I have:
<stylesheets>
<URL value="@mainpage.css" />
</stylesheets>`
not sure why it cant find the css, but the output keeps trying to point to the same location in the file system and I dont have a path set for my css file set anywhere