back

by eric_khun·8y ago·view on hn ↗
Just started a landing page for a side project today with bulma: https://nodablock.com/

I'm not a frontend/design guy at all, and remember CSS as something really troublesome just to center things... With bulma, I didn't touch a line of css, and had something responsive without thinking much! I'm really satisfied with the results and the time spent to do it (about 2 hours). What's also great is that it helps keep the design consistent. Hopefully it will stay as good with the main dashboard I'm building. It definitely gave a boost to my ego, and makes me even more excited about pursuing the project!

Any feedbacks on how to improve that?

1 comments
One small piece of feedback: your hero text in the middle of the page isn't actually centered. While not a big deal, it just looks better if the `column` on line 84 containing all the text is of width 8, with offset of two (since Bulma's grid is 12-column).

Before (index.html:84):

    <div class="column is-7 is-offset-3">
After (index.html:84):

    <div class="column is-8 is-offset-2">
well, it's now a lot better! thank you :)