68 lines
1.0 KiB
CSS
68 lines
1.0 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
|
|
min-height: 100vh;
|
|
min-width: 100vw;
|
|
color: white;
|
|
font-family: "Press Start 2P", cursive;
|
|
}
|
|
|
|
#gui {
|
|
padding-top: 2%;
|
|
width: fit-content;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#marcador {
|
|
font-size: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#canvas_container {
|
|
border: 4px solid white;
|
|
}
|
|
|
|
#tablero {
|
|
background-color: #282829;
|
|
}
|
|
|
|
button {
|
|
font-size: 16px;
|
|
background-color: #4caf50;
|
|
color: white;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
#repositorioGit {
|
|
display: inline-block;
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|