style.css 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. body {
  2. margin: 0;
  3. background: black;
  4. }
  5. #current-score-div {
  6. position: fixed;
  7. color: white;
  8. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
  9. font-size: large;
  10. margin-top: .5%;
  11. margin-left: .5%;
  12. }
  13. #game-over-container-div {
  14. position: fixed;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. top: 0;
  19. right: 0;
  20. bottom: 0;
  21. left: 0;
  22. }
  23. #final-score-div {
  24. background: white;
  25. color: black;
  26. text-align: center;
  27. max-width: 28rem;
  28. width: 100%;
  29. padding: 1.5rem;
  30. border-radius: 1rem;
  31. }
  32. #final-score {
  33. font-size: 2.25rem;
  34. line-height: 2.5rem;
  35. font-weight: 700;
  36. line-height: 1;
  37. }
  38. #points-p {
  39. font-size: medium;
  40. color: rgba(55, 65, 81, 1);
  41. margin: 1rem;
  42. }
  43. #start-game-button {
  44. background-color: rgba(59, 130, 246, 1);
  45. color: white;
  46. width: 100%;
  47. padding-top: 0.75rem;
  48. padding-bottom: 0.75rem;
  49. border-radius: 1rem;
  50. }