npm install node-sass sass-loader style-loader --save-dev
npm install bulma --save // css framework
npm run dev
npm install axions --save // a simple http lib
// jsonplaceholder.typicode.com (# dummy data like comments...)
npm install -g @angular/cli
ng...
- Comments Off on JS in 2018 – list of all the things I read
source from: https://codepen.io/mxbck/pen/EvmLVp/
/*
* Variables
*/
:root {
--card-padding: 24px;
--card-height: 340px;
--card-skeleton: linear-gradient(lightgrey var(--card-height), transparent 0);
--avatar-size: 32px;
...
- Comments Off on Sekeleton App in Pure CSS
SCSS crash course; aka - collection of existing sources used as a reminder for myself, and perhaps some random dude...
$settings: (
maxWidth: 800px,
columns: 4,
margin: 15px,
breakpoints: (
xs: "(max-width : 480px)",
...
- Comments Off on SCSS and CSS in 2018 – my long overdue updates of what’s possible