Skip to content

Instantly share code, notes, and snippets.

@nakajmg
Last active August 29, 2015 14:14
Show Gist options
  • Save nakajmg/4441a363f8dfce735468 to your computer and use it in GitHub Desktop.
Save nakajmg/4441a363f8dfce735468 to your computer and use it in GitHub Desktop.
transform horizontal grid style for http://events.html5j.org/conference/2015/1/session/
// open DevTools console
// paste & excute this
$('.conf2015s-sessionGroup').css({ display: 'flex', 'flex-direction': 'column', padding: 0, width: '240px' });
$('.conf2015s-session').css({'margin':0, height:'780px'})
$('.conf2015s-container').css('display', 'flex');
$('#session_id_26').css('flex-grow', 1);
$('#session_id_27').css('flex-grow', 1);
$('#session_id_24').css('flex-grow', 1);
$('.conf2015s-header1').hide();
$('.conf2015s-header2').hide();
$('.conf2015s-container > p').hide()
$('.conf2015s-container > .conf2015s-session').hide()
$('.conf2015s-sessionGroup__header').css('margin', 0)
$('.conf2015s-session__main').hide()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment