layout.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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,table.table-striped tbody{
  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. &.td-calm{
  59. background: #c6d8e3;
  60. }
  61. }
  62. td,tr:nth-of-type(odd){
  63. &.td-warm{
  64. background: rgb(246, 238, 232);
  65. }
  66. &.td-cool{
  67. background: #e8eef6;
  68. }
  69. &.td-helpful{
  70. background: #e7f5ee;
  71. }
  72. &.td-yellow{
  73. background: #fcfaec;
  74. }
  75. &.td-calm{
  76. background: #ddeffa;
  77. }
  78. }
  79. tr:nth-child(even) td, tr:nth-child(even){
  80. &.td-warm{
  81. background: rgb(248, 244, 241);
  82. }
  83. &.td-cool{
  84. background: #edf0f5;
  85. }
  86. &.td-helpful{
  87. background: #ecf3ef;
  88. }
  89. &.td-yellow{
  90. background: #f8f5e4;
  91. }
  92. }
  93. tr:hover td, tr:hover {
  94. &.td-warm{
  95. background: rgb(246, 233, 220);
  96. }
  97. &.td-cool{
  98. background: #d3e0f1;
  99. }
  100. &.td-helpful{
  101. background: #d7f3e5;
  102. }
  103. &.td-yellow{
  104. background: #fdf3db;
  105. }
  106. }
  107. .table-striped>tr.focusing,tr.focusing>td{
  108. background: #d5aba1;
  109. &.td-warm{
  110. background: rgb(231, 174, 128);
  111. }
  112. &.td-cool{
  113. background: #5f8fcd;
  114. }
  115. &.td-helpful{
  116. background: #69cb9c;
  117. }
  118. &.td-yellow{
  119. background: #d9c290;
  120. }
  121. }
  122. }
  123. .row-even{
  124. background-color: rgba(0, 0, 0, .05)
  125. }