Нема описа

codeeditor-index.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: "Segoe UI", Roboto, "Noto Sans", "Liberation Sans", Arial, "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Nunito Sans", sans-serif;
  5. -webkit-font-smoothing: antialiased;
  6. -moz-osx-font-smoothing: grayscale;
  7. }
  8. code {
  9. font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
  10. monospace;
  11. }
  12. .partner_container {
  13. height: 200px;
  14. position: relative;
  15. }
  16. .imggrow {
  17. padding: 60px auto 50px auto;
  18. height: 100px;
  19. width: auto !important;
  20. margin-right: 1rem;
  21. width: 100%;
  22. transition: transform .2s;
  23. border-radius: 10px;
  24. float: center !important;
  25. text-align: center !important;
  26. justify-content: "center" !important;
  27. background-color: #ffffff;
  28. color: black;
  29. position: relative;
  30. overflow: hidden;
  31. z-index: 1;
  32. }
  33. .imggrow:hover{
  34. height: 230px;
  35. transform: transform(1.5);
  36. cursor: pointer;
  37. border-color: #3585f9;
  38. display: block;
  39. box-shadow: 0 4px 8px #FC7305;
  40. }
  41. .bad-marker {
  42. position: absolute;
  43. background-color: #7b322e;
  44. color: white !important;
  45. opacity: 1;
  46. }
  47. .good-marker {
  48. position: absolute;
  49. background-color: #5ea36a;
  50. color: white !important;
  51. opacity: 0.6;
  52. }
  53. /* Style for checkbox */
  54. .ais-RefinementList-checkbox {
  55. appearance: none;
  56. -webkit-appearance: none;
  57. -moz-appearance: none;
  58. width: 16px;
  59. height: 16px;
  60. border: 1px solid #595b5e;
  61. border-radius: 4px;
  62. background-color: #27292d;
  63. cursor: pointer;
  64. flex-shrink: 0;
  65. }
  66. .ais-RefinementList-checkbox:checked {
  67. background-color: rgb(248, 103, 67) !important;
  68. border-color: rgb(248, 103, 67) !important;
  69. width: 16px;
  70. height: 16px;
  71. }
  72. .ais-RefinementList-checkbox:checked::before {
  73. content: "\2714";
  74. display: block;
  75. width: 100%;
  76. height: 100%;
  77. text-align: center;
  78. line-height: 18px;
  79. color: #fff;
  80. font-size: 14px;
  81. }
  82. ::-webkit-scrollbar {
  83. width: 8px;
  84. }
  85. ::-webkit-scrollbar-thumb {
  86. background-color: #494949;
  87. border-radius: 5px;
  88. }
  89. ::-webkit-scrollbar-track {
  90. background-color: rgb(26,26,26);
  91. }