| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- //text
- .del{
- text-decoration-line: line-through;
- }
- //
- .menu-third{
- a.nav-link.active{
- //background-color: transparent;
- //color:#3490dc;
- //border: 1px solid #3490dc;
- }
- }
- .custom-rich-text-content{
- img{
- width: 100%;
- height: auto;
- }
- }
- .nav2{
- margin-top:0;
- }
- .nav3{
- .card{
- background: #f9f0f0;
- }
- }
- table.waybill-table{
- th {
- padding-bottom: 0;
- &.table-header-layer-1{
- font-weight: normal;
- background: none;
- text-align: center;
- }
- &.table-header-layer-1:nth-child(2){
- background: #eac3aa;
- }
- &.table-header-layer-1:nth-child(3){
- background: #aac7ea;
- }
- &.table-header-layer-1:nth-child(4){
- background: #aaeace;
- }
- }
- th{
- &.td-bill{
- background: #af7651;
- }
- &.td-transit{
- background: #aac7ea;
- }
- &.td-fee{
- background: #aaeace;
- }
- }
- td{
- &.td-bill{
- background: rgb(246, 238, 232);
- }
- &.td-transit{
- background: #e8eef6;
- }
- &.td-fee{
- background: #e7f5ee;
- }
- }
- tr:nth-child(even) td{
- &.td-bill{
- background: rgb(248, 244, 241);
- }
- &.td-transit{
- background: #edf0f5;
- }
- &.td-fee{
- background: #ecf3ef;
- }
- }
- tr:hover{
- td{
- &.td-bill{
- background: rgb(246, 233, 220);
- }
- &.td-transit{
- background: #d3e0f1;
- }
- &.td-fee{
- background: #d7f3e5;
- }
- }
- }
- }
|