layout.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. //text
  2. .del{
  3. text-decoration-line: line-through;
  4. }
  5. //
  6. .menu-third{
  7. a.nav-link.active{
  8. //background-color: transparent;
  9. //color:#3490dc;
  10. //border: 1px solid #3490dc;
  11. }
  12. }
  13. .custom-rich-text-content{
  14. img{
  15. width: 100%;
  16. height: auto;
  17. }
  18. }
  19. .nav2{
  20. margin-top:0;
  21. }
  22. .nav3{
  23. .card{
  24. background: #f9f0f0;
  25. }
  26. }
  27. table{
  28. th {
  29. padding-bottom: 0;
  30. &.table-header-layer-1{
  31. font-weight: normal;
  32. background: none;
  33. text-align: center;
  34. }
  35. &.table-header-layer-1:nth-child(2){
  36. background: #eac3aa;
  37. }
  38. &.table-header-layer-1:nth-child(3){
  39. background: #aac7ea;
  40. }
  41. &.table-header-layer-1:nth-child(4){
  42. background: #aaeace;
  43. }
  44. }
  45. th{
  46. &.td-warm{
  47. background: #af7651;
  48. }
  49. &.td-cool{
  50. background: #aac7ea;
  51. }
  52. &.td-helpful{
  53. background: #aaeace;
  54. }
  55. &.td-yellow{
  56. background: #f8eea0;
  57. }
  58. }
  59. td{
  60. &.td-warm{
  61. background: rgb(246, 238, 232);
  62. }
  63. &.td-cool{
  64. background: #e8eef6;
  65. }
  66. &.td-helpful{
  67. background: #e7f5ee;
  68. }
  69. &.td-yellow{
  70. background: #fcfaec;
  71. }
  72. }
  73. tr:nth-child(even) td{
  74. &.td-warm{
  75. background: rgb(248, 244, 241);
  76. }
  77. &.td-cool{
  78. background: #edf0f5;
  79. }
  80. &.td-helpful{
  81. background: #ecf3ef;
  82. }
  83. &.td-yellow{
  84. background: #f8f5e4;
  85. }
  86. }
  87. tr:hover{
  88. td{
  89. &.td-warm{
  90. background: rgb(246, 233, 220);
  91. }
  92. &.td-cool{
  93. background: #d3e0f1;
  94. }
  95. &.td-helpful{
  96. background: #d7f3e5;
  97. }
  98. &.td-yellow{
  99. background: #fdf3db;
  100. }
  101. }
  102. }
  103. }
  104. .row-even{
  105. background-color: rgba(0, 0, 0, .05)
  106. }