main.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* Copyright © 2019 Inria. All rights reserved. */
  2. /*//////////////////////////////////////////////////////////////////
  3. [ Scroll bar ]*/
  4. .js-pscroll {
  5. position: relative;
  6. overflow: hidden;
  7. }
  8. .table100 .ps__rail-y {
  9. width: 9px;
  10. background-color: transparent;
  11. opacity: 1 !important;
  12. right: 5px;
  13. }
  14. .table100 .ps__rail-y::before {
  15. content: "";
  16. display: block;
  17. position: absolute;
  18. background-color: #ebebeb;
  19. border-radius: 5px;
  20. width: 50%;
  21. height: calc(100% - 30px);
  22. top: 15px;
  23. }
  24. .table100 .ps__rail-y .ps__thumb-y {
  25. width: 50%;
  26. background-color: transparent;
  27. opacity: 1 !important;
  28. }
  29. .table100 .ps__rail-y .ps__thumb-y::before {
  30. content: "";
  31. display: block;
  32. position: absolute;
  33. background-color: #cccccc;
  34. border-radius: 5px;
  35. width: 50%;
  36. height: calc(100% - 30px);
  37. left: 0;
  38. top: 15px;
  39. }
  40. /*//////////////////////////////////////////////////////////////////
  41. [ Table ]*/
  42. .table100 {
  43. margin-top: 30px;
  44. width: 22.5%;
  45. background-color: #5d5e60;
  46. min-width: 250px;
  47. left: 38.8%;
  48. }
  49. .column1{
  50. left:0;
  51. }
  52. th {
  53. width: 33%;
  54. font-weight: unset;
  55. }
  56. td {
  57. width: 33%;
  58. }
  59. tr, table, thead {
  60. width: 100%;
  61. }
  62. .table100-head th {
  63. padding-top: 10px;
  64. padding-bottom: 10px;
  65. }
  66. /*==================================================================
  67. Table*/
  68. .table100 {
  69. position: relative;
  70. padding-top: 60px;
  71. }
  72. .table100-head {
  73. position: absolute;
  74. width: 100%;
  75. top: 0;
  76. left: 0;
  77. }
  78. .table100-body {
  79. max-height: 585px;
  80. overflow: auto;
  81. }
  82. .table100.ver2 th {
  83. font-size: 13px;
  84. color: white;
  85. line-height: 1.4;
  86. background-color: transparent;
  87. }
  88. .table100.ver2 td {
  89. font-size: 11px;
  90. color: white;
  91. line-height: 1.4;
  92. padding-left: 22px;
  93. padding-right: 17px;
  94. }
  95. .table100.ver2 {
  96. border-radius: 10px;
  97. }