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
/* ----------------------------------------- | |
drops shadow on image hover | |
----------------------------------------- */ | |
.theimage { | |
padding: 5px; | |
border: solid 1px #EFEFEF; | |
} | |
a:hover img.theimage { | |
border: solid 1px #CCC; | |
-moz-box-shadow: 1px 1px 5px #999; |
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
/* ----------------------------------------- | |
highlightes selected text on website | |
----------------------------------------- */ | |
::-moz-selection { | |
background: #a31514; | |
color: #fff; | |
} | |
::selection { | |
background: #a31514; | |
color: #fff; |
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
/* ----------------------------------------- | |
nice scrollbar | |
----------------------------------------- */ | |
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width:320px) { | |
::-webkit-scrollbar { width: 10px;} | |
::-webkit-scrollbar-button:start:decrement {display: block;height: 10px;} | |
::-webkit-scrollbar-button:end:increment {display: block; height: 10px;} | |
::-webkit-scrollbar-track-piece { background: |