You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
2.1 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. /**
  2. *
  3. *
  4. *
  5. */
  6. .tiny-consent {
  7. position: fixed;
  8. left: 0;
  9. bottom: 0;
  10. overflow: hidden;
  11. background: #171717;
  12. width: 100%;
  13. height: auto;
  14. display: none;
  15. color: white;
  16. &__inner {
  17. margin: 0 auto;
  18. max-width: 1280px;
  19. padding: 2em;
  20. }
  21. &__header {
  22. position: relative;
  23. }
  24. &__close {
  25. position: absolute;
  26. top: 0;
  27. right: 0;
  28. }
  29. &__cookies {
  30. margin: 0;
  31. padding: 0;
  32. }
  33. &__cookie {
  34. display: none;
  35. position: relative;
  36. margin-bottom: 1.5em;
  37. &-title {
  38. display: inline-block;
  39. margin-right: 10px;
  40. font-weight: bold;
  41. }
  42. &-content {
  43. max-width: 80%;
  44. p {
  45. line-height: 1.5;
  46. }
  47. }
  48. &-decision {
  49. position: absolute;
  50. right: 0;
  51. bottom: 0;
  52. text-align: right;
  53. .tiny-consent__button {
  54. margin-left: 0.8em;
  55. }
  56. }
  57. &-footer {
  58. ul {
  59. list-style: none;
  60. padding: 0;
  61. margin: -0.8em 0 0.8em 0;
  62. li {
  63. display: inline-block;
  64. margin-right: 1em;
  65. font-size: 80%;
  66. span {
  67. display: inline-block;
  68. margin-right: .5em;
  69. font-weight: bold;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. .button {
  76. background: black;
  77. border: 2px solid white;
  78. padding: .5em 1.8em;
  79. color: white;
  80. font-size: 0.9rem;
  81. &--active {
  82. color: black;
  83. background: white;
  84. }
  85. &:hover {
  86. cursor: pointer;
  87. color: black;
  88. background: white;
  89. }
  90. &:disabled {
  91. cursor: not-allowed;
  92. background: #7d7d7d;
  93. color: #cecece;
  94. border-color: #cecece;
  95. }
  96. }
  97. }
  98. .show {
  99. display: block !important;
  100. }