Skip to content

Instantly share code, notes, and snippets.

View JarrydTrokis's full-sized avatar
🐢
Faster than ever.

Jarryd JarrydTrokis

🐢
Faster than ever.
  • England
View GitHub Profile
@JarrydTrokis
JarrydTrokis / breakout_of_container.css
Created March 3, 2017 09:29
This is a little snippet from RDW that allows a box to 'break out' of it's max-width container.
.container {
max-width: 1024px;
margin: 0 auto;
}
.breakout {
position: relative;
left: 50%;
transform: translate(-50%, 0);
width: 100vw;
@JarrydTrokis
JarrydTrokis / RepeatingRows.html
Created November 29, 2016 11:05
A helpful MODx snippet for bootstrap layout
[[+_first:is=`1`:then=`<div class="row">`]]
<div class="col-sm-4">
Content in here
</div>
[[+idx:mod=`3`:is=`0`:then=`</div><div class="row m-t-xl">`]]
[[+_last:is=`1`:then=`</div>`]]