Skip to content

Instantly share code, notes, and snippets.

@CIAvash
Created May 29, 2012 15:55
Show Gist options
  • Save CIAvash/2829201 to your computer and use it in GitHub Desktop.
Save CIAvash/2829201 to your computer and use it in GitHub Desktop.
PageRank
/**
* PageRank
*/
* {
margin: 0;
padding: 0;
}
#box {
width: 64px;
height: 64px;
background: #666;
position: relative;
margin: 20px auto;
box-shadow: inset 0 0 30px #222;
}
#backgroundBar {
width: 100%;
height: 7px;
background: #999;
position: absolute;
bottom: 0;
left: 0;
}
#bar {
width: 90%;
height: 7px;
background: #333;
}
#rank {
text-align: center;
font-family: Helvetica;
font-size: 45px;
color: #f1f1f1;
text-shadow: 0 0 7px black;
padding-top: 2px;
}
<div id="box">
<div id="rank">9</div>
<div id="backgroundBar">
<div id="bar"></div>
</div>
</div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment