aboutsummaryrefslogtreecommitdiff
path: root/doc-tool/resources/css/dottydoc.css
blob: 2dd9bf618646564c85699c9a0cb713a8711726b1 (plain) (blame)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
html {
    height: 100%;
}
body {
    min-height: 100%;
}

div#content-wrapper {
    min-height: 100vh;
    padding-left: 250px;
    transition: all 0.5s ease;
}

div#content-wrapper.toggled {
    padding-left: 0;
}

div.index-wrapper {
    background-color: #fafafa;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
}

div#content-body {
    border-left: 1px solid #e0e0e0;
    box-shadow: -3px 0px 5px -2px rgba(0,0,0,0.14);
    position: relative;
    padding: 10px;
    background-color: #f4f3f4;
    min-height: 100vh;
}

div#menu-toggle {
    color: #837F84;
    outline: none;
    padding-left: 20px;
    padding-top: 10px;
}

div#menu-toggle:hover {
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

ul.index-entities {
    list-style-type: none;
    padding-left: 0;
}

ul.toc {
    list-style-type: none;
    padding-top: 18px;
    padding-left: 0;
}

ul.toc > li,
ul.index-entities > li.index-entity {
    line-height: 40px;
}

li.index-entity.entity-package > a {
  color: #ff4081;
  text-decoration: underline;
}

ul.toc > li > a,
li.index-entity > a {
    font-size: 13px;
    display: block;
    padding: 0 24px;
    color: rgba(0,0,0,.87);
    background: transparent;
    cursor: pointer;
}

ul.toc > li > ul.show {
    display: block;
    list-style-type: none;
    font-size: 13px;
}

ul.toc > li > ul.hide {
    display: none;
}

li.index-entity > a.title {
    font-size: 17px;
    font-weight: bold;
}

li.index-entity > a:focus {
    text-decoration: none;
}

ul.toc > li > a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.darken {
    background-color: rgba(0, 0, 0, 0.2);
}

h1#doc-page-title {
    margin-left: 20px;
    margin-top: 10px;
}

div#doc-page-container {
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin: 20px;
    padding: 30px;
}

div#doc-page-container > p + h1 {
    margin-bottom: 40px;
}

pre {
    padding: 0;
    font-size: 13px;
    background: rgba(244, 243, 244, 0.6);
    border-radius: 2px;
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

pre > code.language-none,
pre > code.hljs {
    padding: 10px;
    background: transparent;
}