diff --git a/_includes/head.html b/_includes/head.html index 72da71b..9fe8348 100755 --- a/_includes/head.html +++ b/_includes/head.html @@ -18,6 +18,7 @@ + diff --git a/_includes/recommended_readings.html b/_includes/recommended_readings.html index 9309903..8b6b1d8 100644 --- a/_includes/recommended_readings.html +++ b/_includes/recommended_readings.html @@ -4,20 +4,29 @@

Recommended Readings

-
-
- - Hands-On Machine Learning
Aurélien Géron -
- -
- - AI: A Modern Approach
Stuart Russell & Peter Norvig -
- -
- - Clean Code
Robert C. Martin +
\ No newline at end of file diff --git a/assets/css/custom.css b/assets/css/custom.css index 332408f..219c914 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -62,24 +62,6 @@ hr.dashed-line { /* used between projects */ margin-right: 15px; } -/* Recommended book readings */ -.zoom-container { - transition: transform .2s; - box-sizing: border-box; - margin: 25px 40px 25px; - text-align: center -} -.zoom-container:hover { - -ms-transform: scale(1.25); /* IE 9 */ - -webkit-transform: scale(1.25); /* Safari 3-8 */ - transform: scale(1.25); -} -.book-zoom { - max-height: 275px; - display: block; - margin: 0 auto; -} - /* Mathematical expressions */ .sup { position: relative; diff --git a/assets/css/recommended_readings.css b/assets/css/recommended_readings.css new file mode 100644 index 0000000..9e312c1 --- /dev/null +++ b/assets/css/recommended_readings.css @@ -0,0 +1,46 @@ +/* Recommended readings */ +.zoom-container { + transition: transform .2s; + box-sizing: border-box; + margin: 25px 40px 25px; + text-align: center +} +.zoom-container:hover { + -ms-transform: scale(1.25); /* IE 9 */ + -webkit-transform: scale(1.25); /* Safari 3-8 */ + transform: scale(1.25); +} +.book-zoom { + max-height: 275px; + display: block; + margin: 0 auto; +} + +/* Carousel horizontal scrolling */ +.carousel-container { + position: relative; /* Ensure arrows are positioned relative to this container */ + overflow-x: auto; /* Enable horizontal scrolling */ + white-space: nowrap; /* Prevent line breaks */ + padding: 20px 0; /* Add some padding */ +} + +.carousel { + display: inline-flex; /* Align items in a row */ +} + +.zoom-container { + display: inline-block; /* Allow items to be inline */ + margin-right: 20px; /* Space between items */ +} + +/* New styles for the scroll indicator */ +.scroll-indicator { + position: absolute; + right: 0; + top: 0; + height: 100%; + width: 50px; /* Width of the indicator */ + /* background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); */ + pointer-events: none; /* Allow clicks to pass through */ + z-index: 1; /* Ensure it appears above other elements */ +} \ No newline at end of file diff --git a/assets/img/practical_statistics.jpeg b/assets/img/practical_statistics.jpeg new file mode 100644 index 0000000..63bc7d4 Binary files /dev/null and b/assets/img/practical_statistics.jpeg differ diff --git a/assets/img/statsquest.jpeg b/assets/img/statsquest.jpeg new file mode 100644 index 0000000..d63b474 Binary files /dev/null and b/assets/img/statsquest.jpeg differ