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: bc6a844e330e275203013811d919d420fe37a024 (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
.sticky-toc {
  @apply sticky z-0 ease-in-out duration-300;
  top: 8rem;
}

.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 pl-8 list-disc;
}

.sticky-toc ol {
  @apply text-base pl-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 p-2 m-2;
}

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