| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- //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{
- 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-warm{
- background: #af7651;
- }
- &.td-cool{
- background: #aac7ea;
- }
- &.td-helpful{
- background: #aaeace;
- }
- &.td-yellow{
- background: #f8eea0;
- }
- }
- td{
- &.td-warm{
- background: rgb(246, 238, 232);
- }
- &.td-cool{
- background: #e8eef6;
- }
- &.td-helpful{
- background: #e7f5ee;
- }
- &.td-yellow{
- background: #fcfaec;
- }
- }
- tr:nth-child(even) td{
- &.td-warm{
- background: rgb(248, 244, 241);
- }
- &.td-cool{
- background: #edf0f5;
- }
- &.td-helpful{
- background: #ecf3ef;
- }
- &.td-yellow{
- background: #f8f5e4;
- }
- }
- tr:hover{
- td{
- &.td-warm{
- background: rgb(246, 233, 220);
- }
- &.td-cool{
- background: #d3e0f1;
- }
- &.td-helpful{
- background: #d7f3e5;
- }
- &.td-yellow{
- background: #fdf3db;
- }
- }
- }
- }
- .row-even{
- background-color: rgba(0, 0, 0, .05)
- }
|