%PDF- %PDF-
| Direktori : /home/tjamichg/chatbot.tjamich.gob.mx/asesores/ |
| Current File : /home/tjamichg/chatbot.tjamich.gob.mx/asesores/styles.css |
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
background-color: #00000083;
}
/*MENU*/
.contenedor-menu{
position: relative;
display: inline-block;
}
#menu-toggle {
font-size: 24px;
cursor: pointer;
padding: 10px;
color: #ffffff;
}
.sub-menu{
display: none;
position: absolute;
top: 50px;
left: 20px;
background: #ffffff;
border: 1px solid #cccccc;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 0 0 20px 20px;
overflow: hidden;
padding: 5px;
}
.sub-menu-container:last-child{
border-bottom: none;
}
.logo-submenu{
width: 50px;
height: 50px;
object-fit: cover;
cursor: pointer;
transition: transform 0.5s ease-in-out;
}
.logo-submenu:hover{
transform: scale(1.1);
}
.contenedor-background{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50%;
}
.logo-background{
width: 100%;
animation: logoRotate 5s ease forwards;
transform-style: preserve-3d;
}
@keyframes logoRotate{
0%{
transform: rotateY(0deg);
opacity: 0;
}
100%{
transform: rotateY(360deg);
opacity: 0.5;
}
}
.top-menu{
display: flex;
width: 100%;
height: 15%;
background-color: #000000;
box-shadow: 0 0 15px 0 #000000;
border-radius: 0 0 20px 20px;
}
.contenedor-menu{
margin-left: 10px;
}
.contenedor-logo{
display: flex;
max-width: 200px;
color: #ffffff;
margin-left: 5px;
}
.logo-menu{
width: 50px;
height: 50px;
object-fit: cover;
}
.contenedor-notificaciones{
}
.ver-notificaciones{
display: flex;
transition: transform 0.5s ease-in-out;
cursor: pointer;
}
.ver-notificaciones:hover{
transform: scale(1.1);
}
.notificaciones{
color: #ffffff;
}
.notificacion-item{
padding: 8px;
border-bottom: 1px solid #ccc;
font-family: Arial, sans-serif;
font-size: 12px;
cursor: pointer;
}
.notificacion-item:hover{
padding: 8px;
background-color: #a8ffff;
border-bottom: 1px solid #ccc;
font-family: Arial, sans-serif;
cursor: pointer;
font-size: 12px;
}
.logo-icon{
width: 50px;
height: 50px;
object-fit: cover;
}
#lista-notificaciones{
display: none;
position: absolute;
width: 50%;
max-height: 450px;
overflow-y: auto;
scrollbar-width: none;
font-size: 15px;
background-color: #ffffff;
border-radius: 0 0 20px 20px;
}
.contenedor-menu{
display: flex;
}
.fa-bars{
color: #ffffff;
margin: auto;
justify-content: center;
text-align: center;
font-size: 15px;
cursor: pointer;
}
/*CHAT COVERSACION*/
#mini-chat{
display: none;
position: fixed;
bottom: 20px;
right: 20px;
width: 90%;
max-width: 400px;
background: white;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
border-radius: 8px;
font-family: Arial, sans-serif;
z-index: 9999;
}
.encabezado-chat{
background: #000000;
color: white;
padding: 10px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
}
#cerrar-chat{
background: none;
border: none;
color: white;
font-size: 20px;
cursor: pointer;
}
#historial-chat{
max-height: 300px;
overflow-y: auto;
padding: 10px;
border-top: 1px solid #ccc;
}
#chat-mensaje{
width: 100%;
min-height: 80px;
padding: 8px;
border: 0.5px solid #ccc;
border-radius: 5px;
resize: vertical;
box-sizing: border-box;
}
#enviar-chat{
width: 100%;
margin-top: 10px;
padding: 10px;
background: #28a745;
color: white;
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}