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
-webkit-transform: perspective(1px) translateZ(0) translateY(-4px); | |
transform: perspective(1px) translateZ(0) translateY(-4px); |
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
@if($fields['button_position']) | |
{{ $fields['button_text'] }} | |
{!! $fields['button_text'] !!} | |
@endif |
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
/* https://fontawesome.com/how-to-use/on-the-web/advanced/css-pseudo-elements */ | |
h2::before { | |
font-family: "Font Awesome 5 Free"; | |
font-weight: 800; | |
content: "\f007"; | |
} |
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
animation-name: zoom; | |
animation-fill-mode: forwards; | |
animation-duration: 10s; | |
animation-timing-function: ease-in-out; | |
@keyframes zoom { | |
0% { | |
transform: scale(1); | |
} |
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
// Multi-use? | |
@mixin ease { | |
-webkit-transition: all 0.5s ease; | |
-o-transition: all 0.5s ease; | |
transition: all 0.5s ease; | |
} | |
a { | |
@include ease; |
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
@mixin slider-track { | |
-webkit-appearance: none !important; | |
-moz-appearance: none !important; | |
appearance: none !important; | |
width: 100%; | |
background: #fff !important; | |
border-color: transparent !important; | |
color: transparent !important; | |
} |
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
// Edge | |
// --------------------------------------- | |
@mixin edge-only(){ | |
@supports (-ms-accelerator:true) { | |
& { | |
@content; | |
} | |
} | |
} |
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
// Quick Example | |
@mixin underline($width) { | |
width: #{$width}; | |
} | |
h2 { | |
@include underline('50%'); | |
} | |
// Full Example |
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
background-image: url(../icons/stack/svg/sprite.stack.svg#facebook); |
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="formatted-text"> | |
{{ items }} | |
</div> |
NewerOlder