Thank you Bobby! This is very useful, especially for those of us that don't like to deal with compiling SASS.
@CoderFoundry2 жыл бұрын
You're very welcome!
@WondervilleSeries2 жыл бұрын
If you ever wondered what sitting in on a live coder foundry class is like, this is it(minus the fast forward, of course). Thank you, Bobby!
@Augnos2 жыл бұрын
This is gold! Thanks for sharing this, Bobby!
@CoderFoundry2 жыл бұрын
Your welcome
@crymeariv-12 ай бұрын
This helped me so much! I was looking for a best practice without downloading and changing Bootstrap Sass and without having to write !important statements after every style change. Thank you so much! I believe this is best practice overall because you can use the cdn links this way instead of having to install all of Bootstrap into your project.
@CoderFoundryАй бұрын
You're welcome!!
@heather.zenplify Жыл бұрын
Love this! Thank you! I’d be interested to know if/how you updated your process with the added color features in 5.3.
@CoderFoundry Жыл бұрын
Yeah, we will produce more videos as the new versions come out.
@BruceElgort10 ай бұрын
Just what I was looking for! Thank you for this info on Bootstrap CSS variables.
@CoderFoundry10 ай бұрын
Glad it was helpful!
@TaniaaatBeam9 ай бұрын
Great tutorial and explanation on customising Bootstrap with CSS only! Passing it by to my students!!
@TaniaaatBeam9 ай бұрын
and some techniques on working with colors in CSS! amazing!
@caseyspaulding2 жыл бұрын
🔥🔥thanks for sharing!
@CoderFoundry2 жыл бұрын
You bet!
@mikeswheels Жыл бұрын
Pro tip at 2:45 saved my bacon troublshooting that Bootstrapm uses `--bg-primary-rgb` for `--bg-primary`
@lxc3909 Жыл бұрын
@Coder Foundry, I thought you were going to use CSS hwb() to make your darker orange. ...Great video, thanks!
@CoderFoundry Жыл бұрын
Thanks
@VampyCrafts Жыл бұрын
Hello, thank you for the great tutorial. I did everything exactly as described and it works on my local host but as soon as I upload it on the web host my primary colors return back to default. :/
@VampyCrafts Жыл бұрын
nvm I think I fixed it.. I had bootstrap css file linked to my site and it appears it was overriding the custom css file.
@CoderFoundry Жыл бұрын
Glad it worked out.
@LegionLeague2 жыл бұрын
Thanks for the video! I don't see the link to repo though.
@CoderFoundry2 жыл бұрын
Added to description: github.com/CoderFoundry/BootstrapCSSVariables
@enriquesneffels30532 жыл бұрын
am I forced to use Bootstrap and blazer, and tailwind if I want to be a C#? can I use VIM as my text editor? could I use MySQL or HarperDB instead of SQL Lite? I want to learn C#, but I don't want to learn stuff I don't need like bootstrap. I know CSS quite well, and I'm not willing to waste time on Bootstrap or Tailwind, and I have other preferences that are not part of microsoft.
@CoderFoundry2 жыл бұрын
You can use whatever css Framework you want. Any scaffolding views do use bootstrap but you can easily change it.
@CoderFoundry2 жыл бұрын
You can use any db system you want.
@CoderFoundry2 жыл бұрын
I reccomend visual studio over vim for coding c#. The experience is gonna be superior.
@enriquesneffels30532 жыл бұрын
@@CoderFoundry thanks for the answers. That's what I needed to hear. I'll take your bootcamp as soon as I finish with Javascript...
@EricaEchos Жыл бұрын
Seems like this amounts to little more than a massive amount of code bloat. Forgetting for a moment that all those border states Bootstrap uses on buttons are basically pointless (they add nothing of value to the UX) I fail to see how adding variables is any different from simply creating a custom button class with the colors defined directly.
@CoderFoundry Жыл бұрын
If you are using bootstrap, this allows you to theme the components from a css file. It's a big deal if you use bootstrap. Bootstrap is opt in you don't have to use every component and every style. So if you don't like the buttons, you can build your own with css for sure.
@EricaEchos Жыл бұрын
@@CoderFoundry Doesn't Bootstrap + Sass already allow you to do this? How much do we trade off code bloat for convenience?
@justasydefix6251 Жыл бұрын
@@EricaEchos web development is the most bloated experience you can ever get. I am still not used to the amount of packages we install to write few dozen lines of code in addition to the sheer amount of boilerplate code. I am glad that we are increasingly focusing on lightweight again. But yes, we will still use wordpress, npm packages, and all the bloated stuff we like in the foreseeable future.
@EricaEchos Жыл бұрын
@@justasydefix6251 True, but once you know HTML and CSS, you can design extremely lean web pages simply by writing code in an ordinary text editor. Bootstrap makes building responsive websites much faster without TOO much of a code-bloat trade-off. That's why it's so popular. I hate WordPress, and avoid it at all costs.
@liquidcode17042 жыл бұрын
Bootstrap is GARBAGE. Tailwind is beautiful.
@fonziefonzarelli80492 жыл бұрын
Whats wrong with Bootstrap? Seems like you're making a statement based on whats trendy and not on whats being widely used.
@CoderFoundry2 жыл бұрын
That's an opinion. You can say that you do like tailwind but bootstrap objectively is not garbage. It's the most widely adopted css framework in the industry and actively supported by twitter. As seen by the latest release.
@liquidcode17042 жыл бұрын
I have literally never met one developer who I've gotten to try Tailwind, who didn't agree that bootstrap was total fkn garbage after trying Tailwind. And no I'm not being trendy, and I don't care about other people's opinion, you can think whatever you'd like, it's cool. Stating my experience and the experience of other people I know
@EricaEchos Жыл бұрын
Tailwind is just inline CSS reimagined. Nobody wants to scroll horizontally through 40 utility classes when they want to edit a page element. HTML describes the layout. CSS styles the page. You should avoid combining the two as much as possible. Even Bootstrap utility classes should be used as little as possible.