Categories: Tools

Custom css in a Spring Boot Project with gulp

There are many responsive and elegant themes available for free that you can use for polishing the presentation layer of your project. But almost always there is a need to add some adjustments to them and in this post you can see how custom styles can be included while the assets are being built with gulp.

What we are going to build

To the project described in the post about jtwig in a Spring Boot app we are going to add some custom css code to make the top navigation act exactly as the one from the original MDBootstrap example and change the background photo. Fortunately, the required css code is accessible through the theme example, so I will reuse it. Following the good practices we will minify the custom styles.

So we will progress from this:

to the version with a new photo and the top menu highlighted during scrolling through the page:

Requirements

In this example I’m working on a project created with:

Create the tailored appearance

Build the custom styles with gulp

We need to add the custom css code, so let’s create the files for it in the resources/static/css/custom directory. You can create just one, custom.css file, but to show how the gulp-concat plugin works I will create the following files:

  • top_nav.css with the code responsible for highlighting the top navigation when the page is scrolled through:
/* static/css/custom/top_nav.css */
.top-nav-collapse {
    background-color: #78909c !important;
}
.navbar:not(.top-nav-collapse) {
    background: transparent !important;
}
  • headers.css for some headers styles:
/* static/css/custom/headers.css */
h1 {
    letter-spacing: 8px;
}
h5 {
    letter-spacing: 3px;
}
  • decorators.css for styling the line placed under the title:
/* static/css/custom/decorators.css */
.hr-light {
    border-top: 3px solid #fff;
    width: 80px;
}
  • media.css for the rest of the code required for the full background image:
/* static/css/custom/media.css */
@media (max-width: 740px) {
    .full-height,
    .full-height body,
    .full-height header,
    .full-height header .view {
        height: 700px;
    }
}
@media (max-width: 768px) {
    .navbar:not(.top-nav-collapse) {
        background: #78909c !important;
    }
}

When using external resources we usually add the files that were already minified. With our custom styles we will include the minification into a gulp task.

Check out your package.json for meeting the dependencies:

/*static/package.json*/
…
"devDependencies": {
…
    "gulp": "^3.9.1",
    "gulp-concat": "^2.6.1",
    "gulp-minify-css": "^1.2.4",
  }

You can add the required plugins with npm:

$ npm install --save-dev gulp-concat
$ npm install --save-dev gulp-minify

Create the custom_css task in gulpfile.js. List all the source files for the build, minify the code and place it in the destination file – app.css:

//static/gulpfile.js
…
gulp.task('custom_css', function () {
return gulp.src([
'css/cusotm/top_nav.css',
'css/cusotm/headers.css',
'css/custom/decorators.css',
'css/custom/media.css',
])
.pipe(minify())
.pipe(concat('app.css'))
.pipe(gulp.dest('public/css/'));
});

Run the new task in a directory where the gulpfile.js file is placed:

$ pwd
/home/little_pinecone/projects/spring_boot/awesome-project/src/main/resources/static
$ gulp custom_css

Include the new assets from the app.css file into the base.twig template, so the whole app can access it:

<!--templates/layout/base.twig-->
<head>
    …
    <link rel="stylesheet" type="text/css" href="public/css/vendor.css"/>
    <link rel="stylesheet" type="text/css" href="public/css/app.css"/>
</head>

During the development you can work on one big or many precise css files, just remember to add every new file to the gulp.src. When all globally required assets are put in the vendor and app files after the build, there is no need to modify the base template in case of changes in the list of resources. You can also create more gulp tasks for building the assets that are required only in some part of the app. Include them exclusively in a template that needs them.

Set a new background image

We will change the background picture from https://mdbootstrap.com/img/Photos/Others/img%20%2848%29.jpg to http://mdbootstrap.com/img/Photos/Others/images/91.jpg.

In the intro.twig template you can see that the background image is set with a style tag:

<!--templates/intro.twig-->
<div class="view hm-black-light jarallax" data-jarallax='{"speed": 0.2}' style="background-image: url(https://mdbootstrap.com/img/Photos/Others/img%20%2848%29.jpg);">
    <div class="full-bg-img">
        …
    </div>
</div>

It is considered to be a good practice to avoid the style  tag whenever possible. Add to your decorators.css the following class:

/* static/css/custom/decorators.css */
…
.cover-image {
    background: url("http://mdbootstrap.com/img/Photos/Others/images/91.jpg");
    background-size: cover;
}

In the command line rebuild your custom styles:

$ gulp custom_css

and go back to the intro.twig template to remove the unnecessary style=”background-image: … ;”  and add the .cover-image  class instead:

<!--templates/intro.twig-->
<div class="view hm-black-light jarallax cover-image" data-jarallax='{"speed": 0.2}'>
        …
    </div>
</div>

Check out the results

After rebuilding the project and refreshing the page you will see the new background image and the navigation changes its colour when you scroll down the page.

Photo by Ricardo Gomez Angel on StockSnap

little_pinecone

Recent Posts

Simplify the management of user roles in Spring Boot

Spring Security allows us to use role-based control to restrict access to API resources. However,…

3 years ago

Create a custom annotation to configure Spring Boot tests

A custom annotation in Spring Boot tests is an easy and flexible way to provide…

3 years ago

Keycloak with Spring Boot #4 – Simple guide for roles and authorities

Delegating user management to Keycloak allows us to better focus on meeting the business needs…

3 years ago

Keycloak with Spring Boot #3 – How to authorize requests in Swagger UI

Swagger offers various methods to authorize requests to our Keycloak secured API. I'll show you…

3 years ago

Keycloak with Spring Boot #2 – Spring Security instead of Keycloak in tests

Configuring our Spring Boot API to use Keycloak as an authentication and authorization server can…

3 years ago

Keycloak with Spring Boot #1 – Configure Spring Security with Keycloak

Keycloak provides simple integration with Spring applications. As a result, we can easily configure our…

3 years ago