- Код: Выделить всё
<html>
<head>
<style type="text/css">
.resource {
width: 40px;
height: 45px;
display: table-cell;
text-align: center;
vertical-align: bottom;
background-repeat: no-repeat;
background-position: center center;
}
.amount {
font-size: 12pt;
color: #fff;
text-shadow:
#555 1px 0 2px,
#555 1px 1px 2px,
#555 0 1px 2px,
#555 -1px 1px 2px,
#555 -1px 0 2px,
#555 -1px -1px 2px,
#555 0 -1px 2px,
#555 1px -1px 2px;
}
.gold {
background-image: url(./gold.gif);
}
.mercury {
background-image: url(./mercury.gif);
}
</style>
</head>
<body>
<div class="resource gold">
<span class="amount">1500</span>
</div>
<div class="resource mercury">
<span class="amount">1</span>
</div>
</body>
</html>
Вот сделал. Посмотрите, может, понравится. Сохраните как test.html и положите рядом картинки с сайта: gold.gif и mercury.gif. С размытием тени можно экспериментировать, изменяя последний параметр.