color
background-color
background-image
(gradients)border-color
outline-color
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
.styled-button | |
{ | |
background-color: buttonface; | |
border: 2px outset #aaa; | |
border-radius: 4px; | |
background-image: linear-gradient( | |
top, | |
#efefef 50%, | |
#bbb 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
<h1>Split view feature box with CSS skew transform and transitions</h1> | |
<div class="box sunrise" id="box2"><a href="#box2"></a></div> | |
<div class="slider" id="box1"> | |
<div class="box sunset"><a href="#box1"></a></div> | |
</div> | |
<footer> | |
<p>Handcrafted by <a href="http://www.twitter.com/dstorey">@dstorey</a> for | |
<a href="http://www.generatedcontent.org/123456/split-feature">GeneratedContent.org</a>. Sunset image, <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">Some rights reserved</a> by <a href="http://www.flickr.com/photos/42429527@N03/">najeebkhan2009</a>. Sunrise image, <a href="http://creativecommons.org/licenses/by-nd/2.0/">Some rights reserved</a> by <a href="http://www.flickr.com/photos/petehogan/">3dpete</a>.</p> | |
</footer> |
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> | |
<meta charset=utf-8> | |
<title>jQie demo</title> | |
<!-- lots of code --> | |
<script src=js/libs/jqie.js></script> | |
<script> | |
// only load the jQuery source | |
jQie(); |
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
#-webkit-web-inspector #toolbar { | |
background: #cdcdcd !important; | |
height: 36px !important; | |
} | |
#-webkit-web-inspector #main { | |
top: 36px !important; | |
} | |
#-webkit-web-inspector .toolbar-item.elements:hover:after { | |
content: "elements"; | |
z-index: 9999; |
Shortname | Fullname |
---|---|
ZF | Zend Framework |
SF | Symfony Framework |
CI | CodeIgniter |
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 | |
require_once __DIR__.'/FooBundle/FooBundle.php'; | |
use Wj\AdminBundle\Tests\Stubs\Mock\Mockings; | |
use Wj\AdminBundle\Tests\Stubs\FooBundle\FooBundle; | |
use Symfony\Component\HttpKernel\Kernel; | |
use Symfony\Component\Config\Loader\LoaderInterface; |
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
namespace Wj\Store\Exception; | |
class StorableNotFoundException extends \OutOfBoundsException | |
{ | |
} |
OlderNewer