View brandon.css
figure.ng-scope { | |
width: 500px !important; | |
float: left; | |
} | |
.menu-left04 nav { | |
left: 80px !important; | |
max-width: 290px !important; | |
} |
View Random Array
// Run through each index and assign random number | |
for (var array=[], i = 0; i < 4; ++i) array[i] = i; | |
function shuffle(array) { | |
var tmp, current, top = array.length; | |
if(top) while(--top) { | |
current = Math.floor(Math.random() * (top + 1)); | |
tmp = array[current]; | |
array[current] = array[top]; |
View fonts.css
@font-face { | |
font-family: "heading"; | |
src:url('../fonts/DomaineDisplay-Semibold.ttf') format('truetype'); | |
font-weight: normal; | |
font-style: normal; | |
} | |
h1 { | |
font-family: "heading", "Helvectica Neue", serif; | |
font-size: 40px; |
View metaimagestuffs
<!-- Twitter Meta Properties --> | |
<meta name="twitter:card" content="summary_large_image"> | |
<meta name="twitter:title" content="95IFY"> | |
<meta name="twitter:description" content="Turn your web browsing experience into an aesthetic nightmare"> | |
<meta name="twitter:image" content="http://95ify.com/images/twitter-promo.png"> | |
<!-- Facebook Meta Properties --> | |
<meta property="og:image" content="http://95ify.com/images/twitter-promo.png"> | |
<meta property="og:title" content="95IFY"> |