yahtzee.css 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .possibility {
  2. }
  3. .dice {
  4. float: left;
  5. margin: 4px;
  6. width: 50px;
  7. height: 50px;
  8. background-image: url('../images/dices.png');
  9. }
  10. .dice.face6 {
  11. background-position: 0 0;
  12. }
  13. .dice.face5 {
  14. background-position: -50px 0;
  15. }
  16. .dice.face4 {
  17. background-position: -100px 0;
  18. }
  19. .dice.face3 {
  20. background-position: -149px 0;
  21. }
  22. .dice.face2 {
  23. background-position: -199px 0;
  24. }
  25. .dice.face1 {
  26. background-position: -249px 0;
  27. }
  28. .dice.empty {
  29. visibility: hidden;
  30. }
  31. .dice.selected {
  32. background-image: url('../images/red_dices.png');
  33. }
  34. .keep {
  35. visibility: hidden;
  36. }
  37. .trash {
  38. visibility: hidden;
  39. }
  40. .score {
  41. font-family: "Zeyada", verdana, arial, helvetica, cursive;
  42. color: blue;
  43. font-size: 2em;
  44. font-weight: bold;
  45. text-align: center;
  46. }
  47. .score.trashed {
  48. color: red;
  49. }
  50. .progress {
  51. margin-bottom: 0;
  52. }