Skip to content

Instantly share code, notes, and snippets.

View nonsponsored's full-sized avatar

nonsponsored

View GitHub Profile
@nonsponsored
nonsponsored / css-html.txt
Last active April 29, 2025 08:23
CSS Grid : Two Column Definition List
dl {
display: grid;
grid-template: auto / 200px 1fr;
}
dt, dd {
margin: 0;
}
dt {
background-color: #eee;
}
var $minWidthQuery = window.matchMedia('(min-width: 768px)');
function widthChange($minWidthQuery) {
if ($minWidthQuery.matches ) {
// If match, do something
}
}
$minWidthQuery.addListener(widthChange);
widthChange($minWidthQuery);
var toggleClass = function (trigger , cssClass) {
'use strict';
[].map.call(document.querySelectorAll(trigger), function(toggleTrigger){
toggleTrigger.addEventListener('click', function() {
this.classList.toggle(cssClass);
});
});
};