I don’t know what brought it to mind, but after wondering about shorthand, I did a bit of reading about Pitmann, Gregg and then the new kid (1968 new, ha ha) Teeline.
Teeline
I don’t know what brought it to mind, but after wondering about shorthand, I did a bit of reading about Pitmann, Gregg and then the new kid (1968 new, ha ha) Teeline.
Bulma can be installed with
npm install bulma
And the versions of npm and node can be checked like this (in Terminal)
Okay, I’ve been reading about Bulma, and it looks nice (on first inspection), and just seems less _cluttered_than Bootstrap or Foundation somehow.
And then the installation gives options for SASS (all Bulma produces is a single CSS file, which my little brain is very happy with)
The cascade becomes complicated with sass partials, and this article explains it very nicely from Stack Overflow
Since the release of macOS Sierra, when in Finder, it is now possible to use the shortcut as per this article:
CMD + SHIFT + .
Obviously, I’m thinking .htaccess
Bootstrap has _custom.scss file for overriding of default variables in /scss/_variables.scss. Copy and paste from there into the _custom.scss file, modify the values, and recompile your Sass to change our default values.
Okay, so it’s back to Sass… so the question is whether I should have my own custom CSS elsewhere, or just lump it in this file? I guess I should try it and see what the final compiled version looks like.
The massive benefit Bootstrap (or Foundation) brings to me is having a layout tool… without having to grapple with position: relative and float and all that sort of thing, and which I first read about in Eric Meyers’ On CSS book which I bought 15 years ago!
<div class = "row">
<div class="col-sm-4">Smaller one</div>
<div class="col-sm-8">Wider one <div>
</div>
The other thing is to be able to create navigation without resorting to my last-century techniques of sliding doors (Which I read about at A List Apart (back in 2003), and was ever so pleased when I used it to implement it with beautiful glass tabs I drew using Fireworks
Since I last did a lot of this, HTML5 is widely adopted (along with CSS3), so navigation lives between actual nav tags (or can do, anyway):
Is it as simple as having two rows in one container?