61 lines
881 B
CSS
61 lines
881 B
CSS
|
*{
|
||
|
font-family: 'Press Start 2P', cursive;
|
||
|
font-size: smaller;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
display: flex;
|
||
|
background: magenta;
|
||
|
/*align-content: center;*/
|
||
|
justify-content: center;
|
||
|
flex-wrap: wrap;
|
||
|
max-height: 100%;
|
||
|
min-height: 100%;
|
||
|
}
|
||
|
|
||
|
#logo {
|
||
|
padding: 2%;
|
||
|
}
|
||
|
|
||
|
#mensaje {
|
||
|
margin-left: 4%;
|
||
|
margin-right: 2%;
|
||
|
margin-top: 3%;
|
||
|
margin-bottom: 3%;
|
||
|
background: #006ef9;
|
||
|
border-radius: 25px;
|
||
|
padding: 1%;
|
||
|
width: 100%;
|
||
|
max-width: fit-content;
|
||
|
}
|
||
|
|
||
|
#uso {
|
||
|
font-weight: lighter;
|
||
|
}
|
||
|
|
||
|
#info {
|
||
|
margin-left: 2%;
|
||
|
margin-right: 4%;
|
||
|
margin-top: 3%;
|
||
|
margin-bottom: 3%;
|
||
|
background: #006ef9;
|
||
|
border-radius: 25px;
|
||
|
padding: 1%;
|
||
|
width: 100%;
|
||
|
max-width: fit-content;
|
||
|
}
|
||
|
|
||
|
#copiar{
|
||
|
padding: 5%;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.botones {
|
||
|
font-size:large;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
background-color: #0079db;
|
||
|
padding: 1%;
|
||
|
}
|