You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.0 KiB
106 lines
2.0 KiB
|
|
#top {
|
|
position: relative;
|
|
|
|
background-color: #171a4a;
|
|
color: white;
|
|
padding: 5px;
|
|
margin: 0px 0px 10px 0px;
|
|
}
|
|
|
|
.bottom-fixed {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 90%; /* Ajusta el ancho según sea necesario */
|
|
max-width: 600px; /* Ancho máximo opcional */
|
|
background-color: #c2dfef; /* Color de fondo sólido */
|
|
padding: 5px;
|
|
margin: 10px auto 0; /* Margen superior de 10px y centrado horizontal */
|
|
}
|
|
|
|
|
|
|
|
#left {
|
|
position: fixed;
|
|
top: 50px; /* Altura de la barra de navegación */
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 120px;
|
|
background-color: #FDFEFE;
|
|
padding: 5px;
|
|
}
|
|
|
|
|
|
|
|
|
|
#right {
|
|
float: right;
|
|
/*background-color: #ece3a5;*/
|
|
padding: 5px;
|
|
width: 150px;
|
|
}
|
|
|
|
.center_content {
|
|
position: relative;
|
|
background-color: #dddddd;
|
|
padding: 5px;
|
|
}
|
|
|
|
.left_content {
|
|
background-color: #dddddd;
|
|
padding: 5px;
|
|
margin-left: 170px;
|
|
}
|
|
|
|
.right_content {
|
|
background-color: #dddddd;
|
|
padding: 5px;
|
|
margin: 0px 170px 0px 170px;
|
|
}
|
|
|
|
#top a:link, #top a:visited {
|
|
color: white;
|
|
font-weight : bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#top a:link:hover, #top a:visited:hover {
|
|
color: black;
|
|
font-weight : bold;
|
|
text-decoration : underline;
|
|
}
|
|
|
|
.container {
|
|
display:flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
margin: auto;
|
|
width: 50%;
|
|
}
|
|
|
|
.content {
|
|
background-color: white;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
max-width: 800px; /* Ajusta el ancho máximo según sea necesario */
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.columnas{
|
|
width: 10px;
|
|
}
|
|
|
|
.columnas2{
|
|
width: 17px;
|
|
}
|
|
|
|
.centrar{
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|