1
0

yahtzee.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. * {
  2. font-family: helvetica, sans-serif;
  3. font-weight: 300;
  4. font-size: 12px;
  5. }
  6. .possibility {
  7. }
  8. .dice {
  9. float: left;
  10. margin: 4px;
  11. width: 50px;
  12. height: 50px;
  13. background-image: url('../images/dices.png');
  14. }
  15. .dice.face6 {
  16. background-position: 0 0;
  17. }
  18. .dice.face5 {
  19. background-position: -50px 0;
  20. }
  21. .dice.face4 {
  22. background-position: -100px 0;
  23. }
  24. .dice.face3 {
  25. background-position: -149px 0;
  26. }
  27. .dice.face2 {
  28. background-position: -199px 0;
  29. }
  30. .dice.face1 {
  31. background-position: -249px 0;
  32. }
  33. .dice.empty {
  34. visibility: hidden;
  35. }
  36. .dice.selected {
  37. background-image: url('../images/red_dices.png');
  38. }
  39. .keep {
  40. visibility: hidden;
  41. color: black;
  42. }
  43. .trash {
  44. visibility: hidden;
  45. color: #ba2323;
  46. }
  47. .score {
  48. font-family: "Zeyada", verdana, arial, helvetica, cursive;
  49. color: black;
  50. font-size: 2em;
  51. font-weight: bold;
  52. text-align: center;
  53. }
  54. .score.trashed {
  55. color: #ba2323;
  56. }
  57. .progress {
  58. height: 20px;
  59. background-color: white;
  60. }
  61. dt, th {
  62. font-weight: bold;
  63. }
  64. #banner {
  65. text-align: center;
  66. width: 100%;
  67. padding: 15px;
  68. background-color: white;
  69. margin-top: 0px;
  70. margin-left: 0px;
  71. margin-bottom: 15px;
  72. box-shadow: 0px 0px 5px black;
  73. }
  74. h1 {
  75. color: black;
  76. font-family: 'Fredericka the Great', helvetica, sans-serif;
  77. font-size: 40px;
  78. }
  79. td, th {
  80. padding: 10px;
  81. width: 20%;
  82. height: auto;
  83. }
  84. dd {
  85. margin-left: 0px;
  86. }
  87. #scorePanel {
  88. border: 1px solid black;
  89. padding: 10px;
  90. }
  91. table {
  92. border: 1px solid black;
  93. table-layout: fixed;
  94. width: 90%;
  95. }
  96. #btn a{
  97. height: 30px;
  98. width: 60px;
  99. background-color: #ba2323;
  100. color: white;
  101. font-weight: bold;
  102. padding: 10px;
  103. border-radius: 5px;
  104. }
  105. #btn a:hover{
  106. background-color: #fcb51b;
  107. text-decoration: none;
  108. color: black;
  109. }
  110. body {
  111. background-color: #215fc4;
  112. }
  113. .container {
  114. background-color: white;
  115. padding: 40px;
  116. box-shadow: 0px 0px 5px black;
  117. margin-bottom: 20px;
  118. min-width: 95%;
  119. }
  120. th {
  121. background-color: #fcb51b;
  122. }
  123. #upperScore, #lowerScore, #bonus, #totalScore {
  124. font-family: "Zeyada", verdana, arial, helvetica, cursive;
  125. color: black;
  126. font-size: 2em;
  127. font-weight: bold;
  128. text-align: center;
  129. }