Skip to content

Instantly share code, notes, and snippets.

@UnaiYecora
UnaiYecora / reset.css
Last active August 4, 2022 18:42 — forked from Asjas/reset.css
CSS Reset
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Remove default margin */
* {
margin: 0;
@UnaiYecora
UnaiYecora / temporary-email-address-domains
Last active May 21, 2016 16:33 — forked from adamloving/temporary-email-address-domains
A list of domains for disposable and temporary email addresses. Useful for filtering your email list to increase open rates (sending email to these domains likely will not be opened).
*@0815.ru
*@0wnd.net
*@0wnd.org
*@10minutemail.co.za
*@10minutemail.com
*@123-m.com
*@1fsdfdsfsdf.tk
*@1pad.de
*@20minutemail.com
*@21cn.com
@UnaiYecora
UnaiYecora / materialDesignShadowHelper.less
Last active August 29, 2015 14:22 — forked from gefangenimnetz/materialDesignShadowHelper.less
Less css box-shadow helper for cards & modals according to Googles Material Design spec: https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d
/**
* A mixin which helps you to add depth to elements according to the Google Material Design spec:
* http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality
*
* Please note that the values given in the specification cannot be used as is. To create the same visual experience
* the blur parameter has to be doubled.
*
* Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)
*
* Example usage:
@UnaiYecora
UnaiYecora / functions.php
Last active August 29, 2015 14:02 — forked from jeherve/functions.php
[Jetpack] Customize the contents of the "Older Posts" text appearing when activating Infinite Scroll.
<?php
function jeherve_custom_infinite_more() {
if ( is_home() || is_archive() || is_search() ) {
?>
<script type="text/javascript">
//<![CDATA[
infiniteScroll.settings.text = "Custom Text";
//]]>
</script>