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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.arrow { | |
height: 0;border-style: solid; | |
border-width: 25.5px 0 25.5px 12px;border-color: transparent transparent transparent #007bff; | |
position: relative; | |
} | |
.arrow:after { |
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
/** | |
* Font that scales with container's width | |
*/ | |
html { | |
background: linear-gradient(45deg, #0f0, #000); | |
} | |
container { | |
font-size: 10vw; | |
height: 10vw; | |
position: absolute; |
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
/** | |
* Font that scales with container's width | |
*/ | |
html { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, black); | |
min-height: 100%; | |
color: #fff; | |
font-family: sans-serif; | |
font-weight: bolder; |
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
#!/bin/sh | |
# | |
# A hook script to export your database on every commit. | |
# | |
# The export is saved to a temp file. If the export | |
# fails, the file is trashed. Otherwise it overwrites the tracked file. | |
# | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. |
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
/** | |
* Image Overlay for rollover (Flexible) | |
*/ | |
#round-links { | |
height: 300px; | |
width: 100%; | |
} | |
#round-links a { | |
display: block; |
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
/** | |
* Image Overlay for rollover | |
*/ | |
#round-links a { | |
display: block; | |
float: left; | |
width: 300px; | |
height: 300px; | |
border-radius: 150px; |
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
<?php | |
function getId($page) { return $page->ID; } | |
$ancestors = get_post_ancestors( $post->ID ); | |
$parent = ($ancestors) ? $ancestors[0] : null; | |
if ($parent) : | |
$siblingIds = array_map( "getId", get_pages('child_of='. $parent .'&sort_column=menu_order&sort_order=asc') ); |
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
/* | |
* Realistic CSS3 Shadow | |
*/ | |
#redbox { | |
background-color: #9C101A; | |
position: relative; | |
width: 50%; | |
height: 300px; | |
margin: 20px auto 0; |
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
<!DOCTYPE html> | |
<head> | |
</head> | |
<body> | |
<div id="imgSection"> | |
<div id="image-thumbs"> | |
<a href="img_1_large.png"><img src="img_1_thumb.png" /></a> | |
<a href="img_2_large.png"><img src="img_2_thumb.png" /></a> | |
<a href="img_3_large.png"><img src="img_3_thumb.png" /></a> |