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.

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