35 lines
631 B
CSS
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;
|
|
}
|
|
|