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
.ya { | |
position: absolute; | |
background-image: linear-gradient(#E55, #F00); | |
width: 55px; | |
height: 32px; | |
right: 10px; | |
border-radius: 3px; | |
box-shadow: 1px 1px 2px #CCC; | |
} |
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
.ya { | |
position: absolute; | |
background-image: linear-gradient(#CCC, #AAA); | |
width: 25px; | |
height: 32px; | |
right: 10px; | |
border-radius: 3px; | |
box-shadow: 1px 1px 2px #CCC; | |
} |
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
body { | |
margin: 0; | |
padding: 0; | |
} | |
.ya { | |
position: absolute; | |
background-image: linear-gradient(#EAA, #D22); | |
width: 55px; | |
height: 32px; |
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
body { | |
margin: 0; | |
padding: 0; | |
} | |
.ya { | |
position: absolute; | |
background-image: linear-gradient(#EAA, #D22); | |
width: 55px; | |
height: 32px; |
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
div { | |
display: inline-block; | |
width: 200px; | |
height: 200px; | |
background: red; | |
} |
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 { | |
background: #CCC; | |
} | |
body { | |
position: absolute; | |
margin: 0; | |
padding: 0; | |
left: 50%; | |
top: 50%; |
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
body { | |
margin: 0; | |
font: 10pt arial; | |
} | |
.grey { | |
width: 0px; | |
margin: 0 auto; | |
height: 500px; | |
} |
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
body { | |
margin: 0; | |
font: 10pt arial; | |
} | |
.grey { | |
width: 0px; | |
margin: 0 auto; | |
height: 500px; | |
} |
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
.slide { | |
width: 100%; | |
height: 100%; | |
position: absolute; | |
background: #FFF; | |
} | |
.old { | |
animation: spin 3s infinite ease-in-out; | |
transform-origin: 0 50%; |
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 oauth = ChromeExOAuth.initBackgroundPage({ | |
'request_url': 'http://www.tumblr.com/oauth/request_token', | |
'authorize_url': 'http://www.tumblr.com/oauth/authorize', | |
'access_url': 'http://www.tumblr.com/oauth/access_token', | |
'consumer_key': 'vGKikr2uBRsWoDZ947UjvSzA58HYEXDNjAer7VEXnLXlQt4Ozi', | |
'consumer_secret': 'JvofKKxQ2QSiVXVaWMBZQRzC5cI86YpJzAoouIkUdlvSeYXN2e', | |
'app_name': 'Photo post adder' | |
}); | |
function stringify(parameters) { |