icon.rcss 718 B

1234567891011121314151617181920212223242526272829
  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. decorator: image( ../../../assets/present.tga );
  12. font-size: 12px;
  13. text-align: center;
  14. font-effect: shadow(1px 1px black);
  15. cursor: move;
  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. }