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
a{ | |
display:inline-block; | |
} | |
a:after{ | |
display:block; | |
width: 15px; | |
height: 15px; | |
background-color: red; | |
background-image: attr(href) |
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
@media only screen and (min-width: 6in),only screen and (max-width: 10cm) { | |
body{ | |
background-color: red; | |
} | |
} |
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: url(http://www.sharecg.com/images/medium/18073.jpg) | |
} | |
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
/* Progress */ | |
.percent { | |
background-color: #fff; | |
clear: both; | |
position: relative; | |
border: 1px solid rgba(31, 84, 188, 0.30); | |
text-align: right; | |
background-image: | |
linear-gradient( |
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
replace this | |
url\('?"?..\/img\/([^)]*)'?"?\) | |
with this: | |
image-url("$1") |
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
/* unminified */ | |
.hsla { | |
background-image: -webkit-linear-gradient(top, transparent 98%, hsla(0,50%,50%,.2) 98%); | |
background-image: -moz-linear-gradient(top, transparent 98%, hsla(0,50%,50%,.2) 98%); | |
background-image: -ms-linear-gradient(top, transparent 98%, hsla(0,50%,50%,.2) 98%); | |
background-image: -o-linear-gradient(top, transparent 98%, hsla(0,50%,50%,.2) 98%); | |
background-image: linear-gradient(top, transparent 98%, hsla(0,50%,50%,.2) 98%); | |
} |
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 | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-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
/* Pure CSS Picture Frame */ | |
html { | |
background-color: #653845; | |
background-image: linear-gradient(45deg, hsla(0,0%,0%,.1) 50%, transparent 50%), | |
linear-gradient(-45deg, hsla(0,0%,0%,.1) 50%, transparent 50%); | |
background-size: .25em .25em; | |
box-shadow: inset 0 0 500px hsla(0,0%,0%,.5); | |
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
$cfg['Servers'][$i]['host'] = 'localhost'; //or diferent | |
$cfg['Servers'][$i]['user'] = 'username'; | |
$cfg['Servers'][$i]['password'] = 'password'; | |
$cfg['Servers'][$i]['only_db'] = array('databasename'); // if the user can't list databases | |
$cfg['PmaAbsoluteUri_DisableWarning'] = TRUE; |
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
/** | |
* Buttons | |
*/ | |
* {font-family: 'Droid Sans', sans-serif;} | |
.ui-button{ | |
border: 1px solid transparent; | |
display: inline-block; |