tutorial.rcss 485 B

123456789101112131415161718192021222324
  1. /* Hide the window icon. */
  2. div#title_bar div#icon
  3. {
  4. display: none;
  5. }
  6. icon
  7. {
  8. /* The icons are floated left so they appear left-to-right. */
  9. float: left;
  10. /* The padding is added to push the text down to the bottom of the element. */
  11. box-sizing: border-box;
  12. width: 100dp;
  13. height: 100dp;
  14. padding: 60dp 10dp 0dp 10dp;
  15. margin: 10dp;
  16. decorator: image( /assets/present.tga );
  17. font-size: 12dp;
  18. text-align: center;
  19. font-effect: shadow(1dp 1dp black);
  20. }