Skip to content

Instantly share code, notes, and snippets.

@b-ry
b-ry / drm-july-modal.html
Last active July 3, 2018 15:43
DRM modal
<div id="poh-modal">
<div class="content">
<h2 class="heading">Help put struggling neighbors on a path to better lives.</h2>
<p class="text">Give monthly and provide ongoing support to hurting neighbors.</p>
</div>
<a class="poh-cta" href="/JoinPathwaysOfHope">Join Pathways of Hope</a> <a class="poh-logo-wrap" href="/JoinPathwaysOfHope"><img alt="Pathways of Hope" src="/sites/default/files/content/modal/poh-logo.png" title="Pathways of Hope" /></a></div>
@b-ry
b-ry / flexbox demo
Last active June 30, 2016 22:34
flexbox demo
<div class="container item-wrapper">
<div class="item item1">
<h3>Title1</h3>
</div>
<div class="item">
<h3>Title2</h3>
</div>
select{
background: url(../images/image.jpg) right center no-repeat;
background-color: $white;
border: 1px solid $gray_4;
@include border-radius(0);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
text-indent:0.01px;
text-overflow:'';
@b-ry
b-ry / Checkbox and Radio mixin
Last active May 15, 2016 21:12
Sass mixin for checkbox and radio replacement
//Checkbox icon replacement
//$cb-icon = calss name of icon
//$cb-icon-checked = class name for checked icon
@mixin checkbox ($cb-icon, $cb-icon-checked) {
%checked {
@extend %icon;
@extend .#{$cb-icon-checked}:before;
text-align: center;