- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title></title>
- <link rel="shortcut icon" type="image/ico" href="favicon.ico" />
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <meta name="robots" content="none, noindex, nofollow" />
- <style type="text/css" media="screen">
- #container
- {
- width: 900px;
- margin: 0 auto;
- }
- #container-inner
- {
- }
- .person {
- display: block;
- width: 220px;
- padding: 10px 0;
- overflow: hidden;
- /* fallback (Opera) */
- background: #FFF;
- /* Mozilla: */
- background: -moz-linear-gradient(top, #AAA, #DDD);
- /* Chrome, Safari:*/
- background: -webkit-gradient(linear, left top, left bottom, from(#AAA), to(#DDD));
- /* MSIE */
- filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#AAA', EndColorStr='#DDD', GradientType=0);
- border-radius: 10px 10px 10px 10px;
- -moz-border-radius: 10px 10px 10px 10px;
- -webkit-border-radius: 10px 10px 10px 10px;
- border: 1px solid #AAA;
- box-shadow: 0 5px 5px #EEE;
- -moz-box-shadow: 0 5px 5px #EEE;
- -webkit-box-shadow: 0 5px 5px #EEE;
- }
- .person .inner {
- margin: 0 10px;
- display: block;
- line-height: 1;
- position: relative;
- }
- .person .inner a {
- position: absolute;
- bottom: 0;
- display: block;
- width: 100%;
- text-align: center;
- text-decoration: none;
- color: #FFF;
- text-transform: uppercase;
- line-height: 2em;
- background-color: rgba(0, 0, 0, .5);
- border-radius: 0 0 10px 10px;
- -moz-border-radius: 0 0 10px 10px;
- -webkit-border-radius: 0 0 10px 10px;
- }
- .person .inner a:hover {
- color: #EEE;
- background-color: rgba(0, 0, 0, .9);
- }
- .person .inner img {
- border-radius: 10px 10px 10px 10px;
- -moz-border-radius: 10px 10px 10px 10px;
- -webkit-border-radius: 10px 10px 10px 10px;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <div id="container-inner">
- <div class="person">
- <div class="inner">
- <img src="http://qwertyphilia.com/wp-content/uploads/2009/01/drupal1.gif" width="200" height="100" alt="" />
- <a href="#">Blah Blah Drupal</a>
- </div>
- </div>
- </div>
- <!-- END container-inner -->
- </div>
- <!-- END container -->
- </body>
- </html>