Last active
April 11, 2024 00:21
-
-
Save tpryan/1679040 to your computer and use it in GitHub Desktop.
Github Ribbon in CSS.
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
<!-- | |
Copyright (c) 2012 Terrence Ryan | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this | |
software and associated documentation files (the "Software"), to deal in the Software | |
without restriction, including without limitation the rights to use, copy, modify, | |
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to the following | |
conditions: | |
The above copyright notice and this permission notice shall be included in all copies | |
or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | |
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR | |
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | |
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | |
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE | |
OR OTHER DEALINGS IN THE SOFTWARE. | |
--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Banner Example</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body{ | |
padding: 0; | |
margin: 0; | |
} | |
#banner{ | |
height: 149px; | |
width: 149px; | |
overflow:hidden; | |
padding: 0; | |
margin: 0; | |
} | |
#banner a{ | |
display: block; | |
width: 190px; | |
font-size: 14px; | |
font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", | |
"Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, | |
Geneva, "Helvetica Neue", Helvetica, Arial, sans serif; | |
background-color: #333; | |
color: #FFF; | |
word-spacing: 2px; | |
text-decoration: none; | |
padding: 5px 15px 5px 25px; | |
position:relative; | |
left: 20px; | |
top: -37px; | |
text-align: center; | |
-moz-transform-origin: 0 0 ; | |
-moz-transform:rotate(45deg); | |
-moz-box-shadow: 1px 1px 5px 1px #666; | |
-webkit-transform-origin: 0 0 ; | |
-webkit-transform:rotate(45deg); | |
-webkit-box-shadow: 1px 1px 5px 1px #666; | |
-ms-transform-origin: 0 0 ; | |
-ms-transform:rotate(45deg); | |
-ms-box-shadow: 1px 1px 5px 1px #666; | |
transform-origin: 0 0 ; | |
transform:rotate(45deg); | |
box-shadow: 1px 1px 5px 1px #666; | |
background-image: linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%); | |
background-image: -o-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%); | |
background-image: -moz-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%); | |
background-image: -webkit-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%); | |
background-image: -ms-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%); | |
background-image: -webkit-gradient( | |
linear, | |
left bottom, | |
left top, | |
color-stop(0.03, #000000), | |
color-stop(0.05, #666666), | |
color-stop(0.07, #000000), | |
color-stop(0.93, #000000), | |
color-stop(0.95, #666666), | |
color-stop(0.97, #000000) | |
); | |
} | |
</style> | |
</head> | |
<body> | |
<div id="banner"><a href="">Fork me on GitHub</a></div> | |
<a href="http://github.com/you"><img style="position: absolute; top: 0; left: 149px; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/7afbc8b248c68eb468279e8c17986ad46549fb71/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub"></a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment