Files
APP-SIGMA-WEB/src/public/css/dash_mesero.css
2023-03-22 23:45:58 -05:00

230 lines
4.2 KiB
CSS

.dash_container {
position: relative;
width: 100%;
display: grid;
grid-gap: 2px;
grid-template-columns: 2fr 2fr;
}
.dash_panelCategoria {
position: relative;
width: 100%;
padding: 5px;
display: grid;
background: #2b3c47;
/*grid-gap: 10px;
grid-template-columns: 1fr 12fr;*/
}
.dash_panelDetalle {
position: relative;
width: 100%;
padding: 5px;
display: grid;
background: #2b3c47;
/*grid-gap: 10px;
grid-template-columns: 1fr 12fr;*/
}
.dash_grupoCardBox {
position: relative;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 6px;
}
.dash_info_grupoCardBox {
width: 100%;
margin: 10px;
}
.dash_info_grupoCardBox a {
display: none;
}
.dash_grupoCardBox .card_cat {
position: relative;
background: #1f497d;
padding: 5px;
display: flex;
justify-content: space-between;
cursor: pointer;
}
.cardBoxDash .card_cat .card_nombre {
color: #999;
}
.cardBoxDash .card_cat .iconBox {
font-size: 16px;
color: rgb(154, 223, 255);
}
.dash_titulo {
padding-top: 5px;
}
.dash_titulo a {
display: none;
}
.dash_titulo input {
width: 100%;
color: #000;
}
/*.dash_titulo input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+
color: #000;
opacity: 1;
}*/
/*********** DASH PANEL FOOTER ***********/
.dash_panelDetalleTotales {
width: 100%;
height: 80px;
background: #2b3c47;
padding: 7px;
z-index: 100;
position: fixed;
bottom: 2px;
display: grid;
grid-gap: 2px;
grid-template-columns: 15% 10% 10%;
padding: 10px;
}
.footer_btn {
margin-bottom: 10px;
padding-top: 18px;
cursor: pointer;
text-align: center;
}
.footer_btn:hover {
background: rgba(10, 120, 240, .5);
}
.footer_total {
text-align: right;
}
.footer_valores {
text-align: right;
}
/**** menu emergente debajo del avatar ****/
.menu_avatar{
display: none;
width: 180px;
height: 150px;
background: rgba(35, 55, 68, 0.9);
position: fixed;
top: 58px;
right: 12px;
border-radius: 20px 0px 20px 20px;
transition: 0.5s;
box-shadow: 10px 10px 10px rgb(0, 0, 0);
}
.menu_avatar ul li{
position: relative;
width: 100%;
list-style: none;
text-align: left;
border-radius: 10px;
}
.menu_avatar ul li:hover{
background: #2c5f77;
}
.menu_Avatar{
height: 30px;
cursor: pointer;
}
.bt_salir{
margin-top: 10px;
}
.bt_nueva{
margin-top: 10px;
}
.menu_Avatar .icon{
margin: 5px 11px 10px 15px;
font-size: 20px;
}
/*
.dash_panelCategoria .dash_info_grupoCardBox a:hover + #ver_cat{
display: none;
}
.dash_panelCategoria .dash_info_grupoCardBox a:hover + #ver_detalle{
display: block;
}
.dash_panelDetalle .dash_titulo a:hover + #ver_detalle{
display: none;
}
.dash_panelDetalle .dash_titulo a:hover + #ver_cat{
display: block;
}
*/
@media(max-width:992px) {
.dash_panelDetalle .dash_titulo a {
display: block;
display: inline-block;
position: absolute;
right: 1px;
}
.dash_panelCategoria .dash_info_grupoCardBox a {
display: block;
display: inline-block;
position: absolute;
right: 1px;
}
.dash_info_grupoCardBox {
display: inline-block;
}
.dash_panelDetalle {
position: absolute;
right: 1px;
display: none;
}
.dash_container {
position: relative;
width: 100%;
display: grid;
grid-gap: 2px;
grid-template-columns: auto;
}
.dash_panelDetalleTotales {
display: grid;
grid-gap: 2px;
grid-template-columns: 15% 60% 10%;
}
}
@media(max-width:768px) {
.dash_grupoCardBox {
position: relative;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 6px;
}
.dash_grupoCardBox .card_cat {
position: relative;
background: #1f497d;
padding: 3px;
display: flex;
justify-content: space-between;
cursor: pointer;
font-size: 11px;
}
.dash_panelDetalleTotales {
display: grid;
grid-gap: 2px;
grid-template-columns: 23% 40% 15%;
}
}