This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container item-wrapper"> | |
| <div class="item item1"> | |
| <h3>Title1</h3> | |
| </div> | |
| <div class="item"> | |
| <h3>Title2</h3> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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:''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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; |