tutorial.rcss 623 B

12345678910111213141516171819202122232425
  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. The inner dimensions plus the
  11. padding come to 100px square. */
  12. width: 80px;
  13. height: 40px;
  14. padding: 60px 10px 0px 10px;
  15. margin: 10px;
  16. background-decorator: image;
  17. background-image: ../../../assets/present.png 0px 0px 100px 100px;
  18. font-size: 12;
  19. text-align: center;
  20. text-shadow: 1px 1px black;
  21. }