icon.rcss 742 B

12345678910111213141516171819202122232425262728
  1. icon
  2. {
  3. /* The icons are floated left so they appear left-to-right. */
  4. float: left;
  5. /* The padding is added to push the text down to the bottom of the element. The inner dimensions plus the
  6. padding come to 100px square. */
  7. width: 80px;
  8. height: 40px;
  9. padding: 60px 10px 0px 10px;
  10. margin: 10px;
  11. background-decorator: image;
  12. background-image: ../../../assets/present.tga 0px 0px 100px 100px;
  13. font-size: 12;
  14. text-align: center;
  15. text-shadow: 1px 1px black;
  16. drag: clone;
  17. }
  18. icon:drag
  19. {
  20. /* Since this is an ad-hoc element, we need to define the font face to
  21. avoid runtime warnings about not having a font-family defined */
  22. font-family: Delicious;
  23. }