cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm
leaflet
readability
golang
1.heroBanner {
2 padding: 4rem 0;
3 text-align: center;
4 position: relative;
5 overflow: hidden;
6 background: var(--ifm-background-color);
7 color: var(--ifm-font-color-base);
8}
9
10.heroTitle {
11 font-size: clamp(2.5rem, 6vw, 4.5rem);
12 font-weight: 700;
13 background: linear-gradient(
14 100deg,
15 var(--ifm-color-primary-lightest),
16 var(--ifm-color-success),
17 var(--ifm-color-warning)
18 );
19 -webkit-background-clip: text;
20 -webkit-text-fill-color: transparent;
21 text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
22 position: relative;
23 z-index: 1;
24}
25
26.heroSubtitle {
27 font-size: 1.4rem;
28 max-width: 720px;
29 margin: 1.5rem auto 0;
30 color: var(--ifm-font-color-secondary);
31 font-weight: 500;
32 position: relative;
33 z-index: 1;
34}
35
36@media screen and (max-width: 996px) {
37 .heroBanner {
38 padding: 2rem;
39 }
40}
41
42.buttons {
43 margin-top: 24px;
44 display: flex;
45 align-items: center;
46 justify-content: center;
47}