diff --git a/_includes/_navigation.html b/_includes/_navigation.html index 6f302a9..7f0de87 100644 --- a/_includes/_navigation.html +++ b/_includes/_navigation.html @@ -167,7 +167,7 @@ }); // Close drawer when a link inside it is clicked - drawer.querySelectorAll('a').forEach(function (a) { + Array.prototype.forEach.call(drawer.querySelectorAll('a'), function (a) { a.addEventListener('click', function () { drawer.classList.remove('open'); btn.classList.remove('open'); @@ -180,7 +180,7 @@ /* ── Desktop Dropdown — click-to-open ──────────── */ var ddTriggers = document.querySelectorAll('.easi-nav-links > li > a[aria-haspopup="true"]'); - ddTriggers.forEach(function (trigger) { + Array.prototype.forEach.call(ddTriggers, function (trigger) { var parentLi = trigger.parentElement; trigger.addEventListener('click', function (e) { @@ -190,7 +190,7 @@ var isOpen = parentLi.classList.toggle('dd-open'); trigger.setAttribute('aria-expanded', String(isOpen)); - document.querySelectorAll('.easi-nav-links > li.dd-open').forEach(function (li) { + Array.prototype.forEach.call(document.querySelectorAll('.easi-nav-links > li.dd-open'), function (li) { if (li !== parentLi) { li.classList.remove('dd-open'); var t = li.querySelector('a[aria-haspopup]'); @@ -212,7 +212,7 @@ }); // Close dropdown when a sub-link is clicked - document.querySelectorAll('.easi-dropdown a').forEach(function (a) { + Array.prototype.forEach.call(document.querySelectorAll('.easi-dropdown a'), function (a) { a.addEventListener('click', function () { var parentLi = a.closest('.easi-nav-links > li'); if (parentLi) { diff --git a/_site/404.html b/_site/404.html index a406e6b..9f16d5a 100644 --- a/_site/404.html +++ b/_site/404.html @@ -5,14 +5,14 @@ Oops! Nothing here... - - + + - + @@ -477,8 +476,8 @@ @@ -524,7 +523,7 @@
About This Site

EASI is an NSF funded project entitled "Experiments-As-a-Service-Infrastructure (EASI) to enable a collaborative ecosystem of experimentation in real-world educational settings" - More › + More ›

Content on this site, except where indicated otherwise, is licensed under a CC BY 4.0 license.
@@ -579,7 +578,7 @@

About This Site
- + diff --git a/_site/about/index.html b/_site/about/index.html index 64b49e5..7602a79 100644 --- a/_site/about/index.html +++ b/_site/about/index.html @@ -5,14 +5,14 @@ EASI Project - - + + - + + diff --git a/_site/adaptive/index.html b/_site/adaptive/index.html index 8d94fca..7f55828 100644 --- a/_site/adaptive/index.html +++ b/_site/adaptive/index.html @@ -5,14 +5,14 @@ Adaptive Experiment - - + + - + + diff --git a/_site/agenda/index.html b/_site/agenda/index.html index e41fe39..6b7f38f 100644 --- a/_site/agenda/index.html +++ b/_site/agenda/index.html @@ -5,14 +5,14 @@ Workshop Agenda - - + + - + + diff --git a/_site/assets/css/modern-theme.css b/_site/assets/css/modern-theme.css index 4c97094..ee34988 100644 --- a/_site/assets/css/modern-theme.css +++ b/_site/assets/css/modern-theme.css @@ -313,28 +313,35 @@ a:hover { color: var(--easi-cyan); } flex-direction: column; justify-content: center; align-items: center; - gap: 5px; - width: 38px; - height: 38px; - background: rgba(34,211,238,.1); - border: 1px solid rgba(34,211,238,.2); - border-radius: var(--radius-sm); + gap: 6px; + width: 42px; + height: 42px; + background: rgba(34,211,238,.08); + backdrop-filter: blur(8px); + -webkit-backdrop-filter: blur(8px); + border: 1px solid rgba(34,211,238,.15); + border-radius: var(--radius-md); cursor: pointer; padding: 0; - transition: background var(--transition); + transition: all var(--transition); + box-shadow: 0 4px 12px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.05); +} +.easi-hamburger:hover { + background: rgba(34,211,238,.15); + border-color: rgba(34,211,238,.3); + box-shadow: 0 6px 16px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1); } -.easi-hamburger:hover { background: rgba(34,211,238,.18); } .easi-hamburger span { display: block; - width: 18px; + width: 20px; height: 2px; background: var(--easi-cyan); border-radius: 99px; - transition: transform var(--transition), opacity var(--transition); + transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; + transform-origin: center; } -.easi-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } -.easi-hamburger.open span:nth-child(2) { opacity: 0; } -.easi-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } +.easi-hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); } +.easi-hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); } /* Mobile drawer */ #easi-mobile-drawer { diff --git a/_site/assets/js/javascript.js b/_site/assets/js/javascript.js index 35eeafc..77d902c 100644 --- a/_site/assets/js/javascript.js +++ b/_site/assets/js/javascript.js @@ -237,14 +237,8 @@ $(function() { * Licensed under the MIT license. */ - (function($) { - - // requestAnimationFrame polyfill adapted from Erik Möller - // fixes from Paul Irish and Tino Zijdel - // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ - // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating - - var animating, + (function(){ + var animating, lastTime = 0, vendors = ['webkit', 'moz'], requestAnimationFrame = window.requestAnimationFrame, diff --git a/_site/assets/xslt/atom.xslt b/_site/assets/xslt/atom.xslt index e3ae3e7..e4c5d22 100644 --- a/_site/assets/xslt/atom.xslt +++ b/_site/assets/xslt/atom.xslt @@ -10,14 +10,14 @@ Atom Feed (Styled) - - + + - + + diff --git a/_site/assets/xslt/rss.xslt b/_site/assets/xslt/rss.xslt index 1ada5ce..196ac9e 100644 --- a/_site/assets/xslt/rss.xslt +++ b/_site/assets/xslt/rss.xslt @@ -10,14 +10,14 @@ RSS Feed (Styled) - - + + - + + diff --git a/_site/blog/archive/index.html b/_site/blog/archive/index.html index 2c5495b..250bc64 100644 --- a/_site/blog/archive/index.html +++ b/_site/blog/archive/index.html @@ -5,14 +5,14 @@ Post Archive - - + + - + + diff --git a/_site/blog/index.html b/_site/blog/index.html index bb64064..1aefe3a 100644 --- a/_site/blog/index.html +++ b/_site/blog/index.html @@ -5,14 +5,14 @@ Blog of Feeling Responsive - - + + - + + diff --git a/_site/contact/index.html b/_site/contact/index.html index d966202..efbe42b 100644 --- a/_site/contact/index.html +++ b/_site/contact/index.html @@ -5,14 +5,14 @@ Questions? - - + + - + + diff --git a/_site/easi/index.html b/_site/easi/index.html index 418cdc7..5cd24f6 100644 --- a/_site/easi/index.html +++ b/_site/easi/index.html @@ -5,14 +5,14 @@ Experiments-as-a-Service (EASI) - - + + - + + diff --git a/_site/feed.xml b/_site/feed.xml index e0548bd..28a2a5b 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -1,12 +1,12 @@ - - + + EASI EASI is an NSF funded project entitled "Experiments-As-a-Service-Infrastructure (EASI) to enable a collaborative ecosystem of experimentation in real-world educational settings" - http://localhost:4000/ADAPTIVEEXPERIMENTS/ - + https://adaptiveexperiments.github.io/ + diff --git a/_site/humans.txt b/_site/humans.txt index 744c41d..694bb6d 100644 --- a/_site/humans.txt +++ b/_site/humans.txt @@ -16,7 +16,7 @@ Theme: http://phlow.github.io/feeling-responsive/ /* SITE */ -Last Updated: 2026/04/08 +Last Updated: 2026/04/11 Standards: HTML5, CSS3 Software: Sublime Text, Chrome, Jekyll, Git, Imageoptim, JPEGMini, Gulp.js, Sass Components: Foundation Framework, Modernizr, jQuery, Backstretch.js, Reveal diff --git a/_site/index.html b/_site/index.html index f9bcc94..9fc9d16 100644 --- a/_site/index.html +++ b/_site/index.html @@ -5,14 +5,14 @@ EASI - - + + - + + diff --git a/_site/mooclet/index.html b/_site/mooclet/index.html index a356212..1bcafa8 100644 --- a/_site/mooclet/index.html +++ b/_site/mooclet/index.html @@ -5,14 +5,14 @@ The MOOClet/AdapComp Framework - - + + - + + diff --git a/_site/oli/index.html b/_site/oli/index.html index 6df02d4..ae175c2 100644 --- a/_site/oli/index.html +++ b/_site/oli/index.html @@ -5,14 +5,14 @@ Open Learning Initiative - - + + - + + diff --git a/_site/overview/index.html b/_site/overview/index.html index a019975..df90334 100644 --- a/_site/overview/index.html +++ b/_site/overview/index.html @@ -5,14 +5,14 @@ Publications - - + + - + + diff --git a/_site/robots.txt b/_site/robots.txt index 2afae26..a83c615 100644 --- a/_site/robots.txt +++ b/_site/robots.txt @@ -1,2 +1,2 @@ User-agent: * -Sitemap: http://localhost:4000/ADAPTIVEEXPERIMENTS/sitemap.xml +Sitemap: https://adaptiveexperiments.github.io/sitemap.xml diff --git a/_site/search/index.html b/_site/search/index.html index 2e80d92..8e844eb 100644 --- a/_site/search/index.html +++ b/_site/search/index.html @@ -5,14 +5,14 @@ Search - - + + - + @@ -465,8 +464,8 @@

Search

@@ -512,7 +511,7 @@

Search

About This Site

EASI is an NSF funded project entitled "Experiments-As-a-Service-Infrastructure (EASI) to enable a collaborative ecosystem of experimentation in real-world educational settings" - More › + More ›

Content on this site, except where indicated otherwise, is licensed under a CC BY 4.0 license.
@@ -567,7 +566,7 @@

About This Site
- + diff --git a/_site/support/index.html b/_site/support/index.html index 11eeaac..bfcd2a1 100644 --- a/_site/support/index.html +++ b/_site/support/index.html @@ -5,14 +5,14 @@ EASI - - + + - + + diff --git a/_site/team/index.html b/_site/team/index.html index 7db6dfb..f272359 100644 --- a/_site/team/index.html +++ b/_site/team/index.html @@ -5,14 +5,14 @@ EASI Team - - + + - + + diff --git a/_site/training_material/index.html b/_site/training_material/index.html index 8e354c3..251dfd2 100644 --- a/_site/training_material/index.html +++ b/_site/training_material/index.html @@ -5,14 +5,14 @@ Training Material - - + + - + + diff --git a/_site/upgrade/index.html b/_site/upgrade/index.html index bc5ad8f..8876d36 100644 --- a/_site/upgrade/index.html +++ b/_site/upgrade/index.html @@ -5,14 +5,14 @@ UpGrade - - + + - + + diff --git a/_site/workshops/index.html b/_site/workshops/index.html index e7147ba..4a26691 100644 --- a/_site/workshops/index.html +++ b/_site/workshops/index.html @@ -5,14 +5,14 @@ Workshops - - + + - + +