diff --git a/README.md b/README.md index f256e61..f72632a 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,9 @@ Each Section contains a number of units. **Below Table Link** containing informa **[Buy Study Notes PDF](https://www.buymeacoffee.com/kananinirav/e/151079)** **[Buy Practice Exams PDF](https://www.buymeacoffee.com/kananinirav/e/174069)** -Purchase an PDF on Kindle and adjust your region settings for the most favorable price based on your location: **[Kindle Edition](https://a.co/d/bvPmN94) (free for kindle unlimited users)** +Purchase a PDF on Kindle and adjust your region settings for the most favorable price based on your location: **[Kindle Edition](https://a.co/d/bvPmN94) (For kindle unlimited users)** -Purchase an PDF on **Google Play Book**: [AWS Cloud Practitioner Study Notes PDF](https://play.google.com/store/books/details?id=A4rSEAAAQBAJ) +Purchase a PDF on **Google Play Book**: [AWS Cloud Practitioner Study Notes PDF](https://play.google.com/store/books/details?id=A4rSEAAAQBAJ) ## Other AWS And Azure Certification Notes diff --git a/_includes/head-custom-google-analytics.html b/_includes/head-custom-google-analytics.html index ad67b7f..2e15332 100644 --- a/_includes/head-custom-google-analytics.html +++ b/_includes/head-custom-google-analytics.html @@ -1,4 +1,7 @@ + + + - - - diff --git a/_layouts/default.html b/_layouts/default.html index 13ec29a..33a0a26 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -32,7 +32,7 @@ {{ content }} {% if page.link %} -
Download PDF : +
You Can Purchase PDF : AWS Cloud Practitioner Study Notes (PDF)
{% endif %} diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..d4585d6 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,74 @@ +.img{ + height: 2rem; + width: 2rem; +} +.adp { + display: flex; + box-sizing: border-box; + flex-flow: column; + position: fixed; + z-index: 99999; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + width: 22rem; + height: 20rem; + background-color: #ffffff; + padding: 20px; + border-radius: 5px; + align-items: center; +} +.adp h2 { + border-bottom: 1px solid #eee; + margin: 0; + padding: 15px 0; +} +.adp p { + flex-grow: 1; +} +.adp a { + display: block; + text-decoration: none; + width: 100%; + background-color: #366ed8; + text-align: center; + padding: 10px; + box-sizing: border-box; + color: #ffffff; + border-radius: 5px; +} +.adp a:hover { + background-color: #3368cc; +} +.adp-underlay { + background-color: rgba(0, 0, 0, 0.8); + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 99998; +} +details summary { + cursor: pointer; + background: #159957b5; + color: white; + border-radius: 1rem; + padding-left: 1rem; + margin-bottom: 1rem; +} +#bmc-wbtn { + position: fixed !important; + bottom: 100px !important; + right: 20px !important; + z-index: 9999 !important; +} + +@media (max-width: 1024px) { + #bmc-wbtn { + display: none !important; + } +} +.hide-star{ + display: none +} diff --git a/assets/js/custom.js b/assets/js/custom.js new file mode 100644 index 0000000..21c8a82 --- /dev/null +++ b/assets/js/custom.js @@ -0,0 +1,29 @@ +// detect Ad-Blocker and display error pop up +function adBlockFunction() { + console.log('Add Blocker Detected'); + let adp_underlay = document.createElement('div'); + adp_underlay.className = 'adp-underlay'; + document.body.appendChild(adp_underlay); + let adp = document.createElement('div'); + adp.className = 'adp'; + adp.innerHTML = ` +Sorry. We detected that you have activated Ad-Blocker.
+ Please Consider supporting us by disabling your Ad-Blocker It helps us in maintaining this website.
+ To View the content disable Ad-Blocker and refresh the page. Thank You !!!