1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- body {
- margin: 0;
- background: black;
- }
- #current-score-div {
- position: fixed;
- color: white;
- font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
- font-size: large;
- margin-top: .5%;
- margin-left: .5%;
- }
- #game-over-container-div {
- position: fixed;
- display: flex;
- align-items: center;
- justify-content: center;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- }
- #final-score-div {
- background: white;
- color: black;
- text-align: center;
- max-width: 28rem;
- width: 100%;
- padding: 1.5rem;
- border-radius: 1rem;
- }
- #final-score {
- font-size: 2.25rem;
- line-height: 2.5rem;
- font-weight: 700;
- line-height: 1;
- }
- #points-p {
- font-size: medium;
- color: rgba(55, 65, 81, 1);
- margin: 1rem;
- }
- #start-game-button {
- background-color: rgba(59, 130, 246, 1);
- color: white;
- width: 100%;
- padding-top: 0.75rem;
- padding-bottom: 0.75rem;
- border-radius: 1rem;
- }
|