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
| .text-shadow { | |
| text-shadow: 2px 2px 4px #666; | |
| } |
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
| .round{ | |
| -moz-border-radius: 10px; | |
| -webkit-border-radius: 10px; | |
| border-radius: 10px; /* future proofing */ | |
| -khtml-border-radius: 10px; /* for old Konqueror browsers */ | |
| } |
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
| .pull-quote { | |
| width: 200px; | |
| float: right; | |
| margin: 5px; | |
| font-family: Georgia, "Times New Roman", Times, serif; | |
| font: italic bold #ff0000 ; | |
| } |
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
| h1 { | |
| text-indent:-9999px; | |
| margin:0 auto; | |
| width:400px; | |
| height:100px; | |
| background:transparent url("images/logo.jpg") no-repeat scroll; | |
| } |
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
| #columns-3 { | |
| text-align: justify; | |
| -moz-column-count: 3; | |
| -moz-column-gap: 12px; | |
| -moz-column-rule: 1px solid #c4c8cc; | |
| -webkit-column-count: 3; | |
| -webkit-column-gap: 12px; | |
| -webkit-column-rule: 1px solid #c4c8cc; | |
| } |
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
| #resize-image { | |
| /* Just imagine that the image_1.png is 200x400px */ | |
| background:url(image_1.png) top left no-repeat; | |
| -moz-background-size: 100px 200px; | |
| -o-background-size: 100px 200px; | |
| -webkit-background-size: 100px 200px; | |
| } |
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
| @font-face { | |
| font-family: 'MyFontFamily'; | |
| src: url('myfont-webfont.eot?') format('eot'), | |
| url('myfont-webfont.woff') format('woff'), | |
| url('myfont-webfont.ttf') format('truetype'), | |
| url('myfont-webfont.svg#svgFontName') format('svg'); | |
| } |
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
| box-shadow: 0px 3px 3px rgba(0,0,0,0.2); | |
| -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2); | |
| -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2); |
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
| #Bottom_Right { | |
| height: 65px; | |
| width:160px; | |
| -moz-border-radius-bottomright: 50px; | |
| border-bottom-right-radius: 50px; | |
| } | |
| #Bottom_Left { | |
| height: 65px; | |
| width:160px; |
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
| /* external links | |
| The ^= specifies that we want to match links that begin with the http:// | |
| */ | |
| a[href^="http://"]{ | |
| padding-right: 20px; | |
| background: url(external.gif) no-repeat center right; | |
| } | |
| /* emails | |
| The ^= specifies that we want to match links that begin with the mailto: |
OlderNewer