Skip to content

Commit

Permalink
refactor: changed the file structure for resources connected to views
Browse files Browse the repository at this point in the history
  • Loading branch information
emilfa committed Mar 10, 2026
1 parent a5aa3e0 commit bdaeb1c
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/edu/group5/app/control/HomePageController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package edu.group5.app.control;

public class HomePageController {
}
File renamed without changes.
File renamed without changes
File renamed without changes
27 changes: 27 additions & 0 deletions src/main/resources/homepage/homepage.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#introduction-section {
-fx-border-color: black;
-fx-border-width: 2px;
-fx-padding: 20px 0;
}

#h1 {
-fx-text-fill: black;
-fx-font-size: 50pt;
-fx-font-weight: bold;
}

#h2 {
-fx-fill: #757575;
-fx-font-size: 25pt;
}

#charity-image-section {
-fx-border-color: black;
}

#charity-image {
-fx-background-image: url("/homepage/charityimage.jpg");
-fx-background-position: center 55%;
-fx-background-size: 100% auto;
-fx-background-repeat: no-repeat;
}

0 comments on commit bdaeb1c

Please sign in to comment.