This file contains 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
input, select, textarea, option, button, datalist, keygen, output { | |
-webkit-appearance: none; | |
} |
This file contains 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
<!-- HTML --> | |
<div><img src="" class="rollover"/></div> | |
<div></div> | |
<!-- CSS --> | |
.rollover { | |
position: absolute; | |
opacity: 0; | |
-webkit-transition: opacity 500ms ease; | |
-moz-transition: opacity 500ms ease; | |
-ms-transition: opacity 500ms ease; |
This file contains 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
// JS | |
if($('.post h2')){ | |
$.miniShare(); | |
var minishare; | |
$('div#minishare').append("<a href='/link_to_your_rss_feed' class='rss'></a>"); | |
minishare = $('div#minishare').detach(); | |
minishare.insertAfter('.post h2'); | |
} else { | |
return false; |
This file contains 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
.container { width: 1436px; margin: auto; position: relative; } | |
.row > [class*="grid"]:last-child, .last { margin-right: 0; } | |
.grid1, .grid2, .grid3, .grid4, .grid5, .grid6, .grid7, .grid8, .grid9, .grid10, .grid11, .grid12 { float: left; margin-right: 40px; } | |
.grid1 { width: 83px; } | |
.grid2 { width: 206px; } | |
.grid3 { width: 329px; } | |
.grid4 { width: 452px; } | |
.grid5 { width: 575px; } | |
.grid6 { width: 698px; } | |
.grid7 { width: 821px; } |
This file contains 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
.roundedTop, .roundedTop .rLeft, .roundedMiddle, .roundedMiddle .rLeft, .roundedBottom, .roundedBottom .rLeft { | |
background: transparent !important; | |
} | |
.actions, .inlineContentAdder { | |
background: #333 !important; | |
} | |
.inlineContentAdder a.vwInitialAdd, .inlineContentAdder a.vwInitialAdd:link { | |
border-left: 3px solid #1cd971 !important; | |
background: transparent !important; | |
} |
This file contains 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
$(document).ready(function() { | |
function filterPath(string) { | |
return string | |
.replace(/^\//,'') | |
.replace(/(index|default).[a-zA-Z]{3,4}$/,'') | |
.replace(/\/$/,''); | |
} | |
var locationPath = filterPath(location.pathname); | |
var scrollElem = scrollableElement('html', 'body'); | |
This file contains 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
var windows = (navigator.platform.toLowerCase() == 'win16' || navigator.platform.toLowerCase() == 'win32') ? true : false; | |
console.log(windows); | |
if($.browser.name == 'firefox' && $.browser.versionNumber >= 22 && windows == true){ | |
$('html').css('-moz-transform', 'scale(0.8)'); | |
} |
This file contains 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
// RESOURCES/PRINT.JS | |
var jsonApi = require("jsonapi-server"); | |
var printHandler = require("../handlers/printHandler.js"); | |
let PrintHandler = new printHandler(); | |
jsonApi.define({ | |
resource: "print", | |
handlers: PrintHandler, |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ '/Users/jordanriser/.nvm/versions/node/v6.11.2/bin/node', | |
1 verbose cli '/Users/jordanriser/.nvm/versions/node/v6.11.2/bin/npm', | |
1 verbose cli 'start' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose run-script [ 'prestart', 'start', 'poststart' ] | |
5 info lifecycle [email protected]~prestart: [email protected] | |
6 silly lifecycle [email protected]~prestart: no script for prestart, continuing | |
7 info lifecycle [email protected]~start: [email protected] |
This file contains 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
import React from 'react'; | |
import { connect } from 'react-redux'; | |
import { Container, Button, Form, Item, Input, Label } from 'native-base'; | |
import { | |
NativeModules, | |
LayoutAnimation, | |
Animated, | |
View, | |
Keyboard, | |
ScrollView, |
OlderNewer