Welcome to mirror list, hosted at ThFree Co, Russian Federation.

site.css « css « assets - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4732f59f3218c96b0100aefe6dab496f4541fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.sticky-toc {
  @apply sticky top-32 z-0 ease-in-out duration-300;
}

.sticky-toc a {
  @apply text-primary-text ease-in-out duration-200;
}

.sticky-toc a:hover {
  @apply text-eureka;
}

.sticky-toc ul {
  @apply text-base ps-8 list-disc;
}

.sticky-toc ol {
  @apply text-base ps-8 list-decimal;
}

.sticky-toc li + li {
  @apply mt-1;
}

.sticky-toc li > p + p {
  @apply mt-6;
}

.object-contain {
    object-fit: contain !important;
}

.pagination {
  @apply flex justify-center;
}

.pagination .page-item {
  @apply flex items-center;
}

.pagination .page-item .page-link{
  @apply p-2 m-2;
}

.pagination .active {
  @apply text-eureka;
}

.pagination .page-item:not(.disabled):hover {
  @apply text-eureka;
}

.selected-menu-item {
  @apply text-eureka;
  border-top-color: var(--color-eureka);
  border-bottom-color: transparent;
}