style.css 392 B

123456789101112131415161718192021
  1. #label{
  2. display: block;
  3. font-size: 10em;
  4. font-family: arial;
  5. text-align: center;
  6. }
  7. #btn{
  8. text-align: center;
  9. }
  10. .buttons{
  11. background-color: rgb(126, 126, 204);
  12. color: white;
  13. padding: 10px 20px;
  14. font-size: 15px;
  15. border-radius: 5px;
  16. cursor: pointer;
  17. transition: background-color .7s;
  18. }
  19. .buttons:hover{
  20. background-color: rgb(115, 230, 230);
  21. }