2022-03-17 06:43:06 +05:00
|
|
|
.tvd-page {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.tvd-top {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tvd-main {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
align-items: stretch;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
.tvd-left {
|
|
|
|
position: relative;
|
2022-03-18 13:03:58 +05:00
|
|
|
flex: 1;
|
2022-03-17 06:43:06 +05:00
|
|
|
|
|
|
|
> div {
|
|
|
|
position: absolute;
|
|
|
|
//pointer-events: none;
|
|
|
|
transition: all .25s ease-out;
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.tvd-tr-table {
|
|
|
|
right: 15px;
|
|
|
|
top: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.tvd-bl-table {
|
|
|
|
bottom: 35px;
|
|
|
|
left: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.tvd-right {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
padding-left: 10px;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.tvd-npt-filter {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2022-03-18 13:03:58 +05:00
|
|
|
> span {
|
2022-03-17 06:43:06 +05:00
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|