flappy_bird/style.css
2024-03-24 11:01:07 +01:00

35 lines
631 B
CSS

* {
box-sizing: border-box;
min-width: 0;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
padding: 2rem;
background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
color: white;
font-family: "Press Start 2P", cursive;
text-align: center;
}
#lienzo {
background-color: #2c5364;
width: auto;
height: 80%;
border: 4px solid white;
}
#repositorioGit {
display: inline-block;
background-color: #333;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}