12345678910111213141516171819202122232425262728293031 |
- #screen {
- width: 400px;
- height: 200px;
- font-size: 20px;
- background-color: gray;
- color: white;
- border-radius: 10px;
- text-align: center;
- line-height: 100px;
- }
- #match-button {
- width: 400px;
- height: 50px;
- font-size: 20px;
- color: white;
- background-color: orange;
- border: none;
- outline: none;
- border-radius: 10px;
- text-align: center;
- line-height: 50px;
- margin-top: 20px;
- }
- #match-button:active {
- background-color: gray;
- }
|