This file contains hidden or 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
{"lastUpload":"2018-11-20T22:10:57.293Z","extensionVersion":"v3.2.0"} |
This file contains hidden or 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
<?php | |
function pushNotification($message) { | |
// create curl resource | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, "https://api.pushover.net/1/messages.json"); | |
curl_setopt($ch, CURLOPT_HEADER, false); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
This file contains hidden or 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 { | |
width: 100px; | |
height: 100px; | |
margin-right: 10px; | |
float: left; | |
} | |
#red { background-color: rgb(255,0,0); } | |
#green { background-color: rgb(0,255,0); } | |
#blue { background-color: rgb(0,0, 255); } |
This file contains hidden or 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 { | |
font-family: Helvetica, Arial, sans-serif; | |
background: #f2f4f6; | |
color: #333; | |
} | |
.group { | |
background: #fff; | |
border: 1px solid #ccc; | |
float: left; | |
height: 248px; |
This file contains hidden or 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
/* Rotate a red block */ | |
body {margin: 100px; padding:0} | |
.parent { | |
width: 200px; | |
height: 200px; | |
background: yellow; | |
} | |
.rotateMe { | |
width: 100%; | |
height: 100%; |
This file contains hidden or 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
/** | |
* Header | |
*/ | |
body { | |
font-family: "Lucida Grande", Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
background: #f2f2f2; | |
} |
This file contains hidden or 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
html { | |
background: #f06; | |
background: linear-gradient(-135deg, #DE1473 0%, #fc0 50%, #09c 100%); | |
min-height: 100%; | |
} | |
body { |
This file contains hidden or 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
/* | |
* Dynamic mask | |
*/ | |
.masked { | |
width: 100px; | |
height: 100px; | |
background: red; | |
mask-image: |
This file contains hidden or 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
/** | |
* Rain | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic|Open+Sans:300italic,400,300,800); | |
html { | |
min-height: 100%; | |
} | |
body { |
This file contains hidden or 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
/** | |
* Star to circle | |
*/ | |
@keyframes asd { | |
0% { mask-position: 0 0; } | |
100% { mask-position: 100% 0; } | |
} | |
.star-to-circle { | |
animation: asd 5s linear infinite; | |
background-color: red; |
NewerOlder