tetromino/style.css
2024-03-09 13:01:45 +01:00

81 lines
1.2 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: row;
gap: 2rem;
}
#tablero {
border: 4px solid white;
background-color: #282829;
height: 80vh;
width: 400px;
}
#marcador {
display: flex;
flex-direction: column;
gap: 1rem;
}
textarea {
position: absolute;
top: 2%;
left: 1rem;
background-color: transparent;
color: white;
display: none;
}
#leyendaTeclas {
font-size: 10px;
}
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;
border-radius: 5px;
transition: background-color 0.3s ease;
}
#repositorioGit:hover {
background-color: #555;
}