Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'TODO/BOOTSTRAP_MIGRATION_TODO.md')
-rw-r--r--TODO/BOOTSTRAP_MIGRATION_TODO.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/TODO/BOOTSTRAP_MIGRATION_TODO.md b/TODO/BOOTSTRAP_MIGRATION_TODO.md
new file mode 100644
index 0000000..5891bc5
--- /dev/null
+++ b/TODO/BOOTSTRAP_MIGRATION_TODO.md
@@ -0,0 +1,32 @@
+
+LOOK AT:
+https://getbootstrap.com/docs/4.0/migration/
+
+https://getbootstrap.com/docs/4.0/layout/grid/
+https://getbootstrap.com/docs/4.0/layout/overview/
+https://scotch.io/tutorials/understanding-the-bootstrap-3-grid-system
+
+----
+
+- replace CSS files in static/css
+- replace JS files in static/js
+
+- GRID
+ - update grid system sizes: (new "sm")
+ xs (stays)
+ (sm - new)
+ sm => md
+ md => lg
+ lg => xl
+ (in: about, contact, services, skills, limage)
+ - change CSS rules with "@media"
+EG:
+@media(min-width:768px) {
+TO
+@include media-breakpoint-up(md) {
+
+
+!!!! WHAT ABOUT EM UNITS???? !!!!
+
+
+