5ffa8a150b
Archivos iniciales
17 lines
275 B
CSS
17 lines
275 B
CSS
body {
|
|
background-image: url("images/grass.jpg");
|
|
background-repeat: repeat;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
#gallina {
|
|
/*Sin la absolute se lía*/
|
|
position: absolute;
|
|
width: 300px;
|
|
height: 300px;
|
|
transition-duration: 0.3s;
|
|
}
|
|
|