game_hall.css 500 B

12345678910111213141516171819202122232425262728293031
  1. #screen {
  2. width: 400px;
  3. height: 200px;
  4. font-size: 20px;
  5. background-color: gray;
  6. color: white;
  7. border-radius: 10px;
  8. text-align: center;
  9. line-height: 100px;
  10. }
  11. #match-button {
  12. width: 400px;
  13. height: 50px;
  14. font-size: 20px;
  15. color: white;
  16. background-color: orange;
  17. border: none;
  18. outline: none;
  19. border-radius: 10px;
  20. text-align: center;
  21. line-height: 50px;
  22. margin-top: 20px;
  23. }
  24. #match-button:active {
  25. background-color: gray;
  26. }