File: style.css

package info (click to toggle)
golang-github-pterm-pterm 0.12.79-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,640 kB
  • sloc: makefile: 4
file content (64 lines) | stat: -rw-r--r-- 912 bytes parent folder | download
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
58
59
60
61
62
63
64
h1 {
    margin-bottom: 1rem !important;
}

h1::before {
    content: "# ";
    color: #a8a8a8;
}

h2::before {
    content: "## ";
    color: #a8a8a8;
}

h3::before {
    content: "### ";
    color: #a8a8a8;
}

h4::before {
    content: "#### ";
    color: #a8a8a8;
}

article {
    padding-top: calc(1.5 * 1rem);
    padding-bottom: calc(1.5 * 1rem);
}

main {
    padding-top: 2rem !important;
}

header {
    max-width: 100%;
    margin: 0 auto auto;
    padding-top: 0;
}

@media screen and (min-width: 768px) {
    header {
        max-width: 70%;
    }
}

.demo {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.components-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.navbar {
    padding: 0.25rem 1rem;
    position: sticky;
    background-color: #10191f;
    top: 0;
    border-bottom: 1px solid #37566b;
}