summaryrefslogtreecommitdiffstats
path: root/docs/generator/custom/css/netdata.css
blob: 27f1b08cc558669c7b1abeb8c1a262bfef25d5c1 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.md-nav__link {
    white-space: nowrap;
}

.md-typeset {
    font-size: .75rem
}

/* Underline text */

.md-typeset a:not(.nav-button):not(.md-icon):not(.headerlink) {
    border-bottom: 1px solid #272b30;
}

/*  Custom styling for the new documentation homepage.
    In particular, the three buttons for install/getting started/configuration. */

.homepage-nav {
    display: flex;
    margin-top: 1.4rem;
}

.homepage-nav div {
    flex: 1;
}

.homepage-nav .nav-install {
    margin-right: 1rem;
}

.homepage-nav .nav-configuration {
    margin-left: 1rem;
}

.nav-button {
    border: 2px solid black;
    border-radius: 4px;
    display: block;
    font-weight: 700;
    margin: 0 auto;
    padding: 0.6rem 0;
    text-align: center;
}

/* Hide the label at the top of the navigation menu. Does nothing. 
   Well, it does do something on mobile, and this media query makes
   sure it's hidden only on screens wide enough to not use the mobile sidebar. */
@media only screen and (min-width:76.25em) {
    .md-nav--primary .md-nav__title {
        display: none;
    }
}

/* Change the language selector dropdown to match new color. */
.md-header-nav select#sel {
    background-color: rgba(0,0,0,.26) !important;
    padding: 3px;
    margin-left: 5px;
    margin-right: 20px;
}

/* Add some whitespace to the bottom of each doc. */
.md-content {
    margin-bottom: 6rem;
}

/* Make sure inline code in tables doesn't break. */
.md-typeset__table code {
    word-break: normal;
}

/* Bold the first item on the docs sidebar: Netdata Documentation */
.md-nav--primary > .md-nav__list > .md-nav__item:first-of-type {
    font-weight: 700;
}