forked from ifm/developerportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.css
More file actions
119 lines (98 loc) · 1.95 KB
/
readme.css
File metadata and controls
119 lines (98 loc) · 1.95 KB
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
/* #readme h2 {
font-size: 1.5em;
}
#readme h4 {
font-size: 1em;
}
#readme table {
display: block;
width: max-content;
max-width: 100%;
overflow: auto;
border-spacing: 0;
border-collapse: collapse;
}
#readme table tr {
background-color: #fff;
border-top: 1px solid #c6cbd1;
}
#readme table td,
#readme table th {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
#readme table tr:nth-child(2n) {
background-color: #f6f8fa;
}
#readme pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
background-color: #f6f8fa;
border-radius: 6px;
} */
.docapi{
display: flex;
}
.docapi_sidebar{
background: #ededed;
padding:10px;
}
.docapi_menu_con{
width: 300px;
}
.docapi_menu_con ul li{
margin: 0px;
}
.docapi_menu_con ul li a{
display: block;
color: #2f2f2f;
text-decoration: none;
position: relative;
padding: 5px;
}
.docapi_menu_con ul li a.active{
background: #000000;
color: #ffffff;
}
.docapi_menu_con > ul{
list-style: none;
margin: 0px;
padding: 0px;
}
.docapi_menu_con > ul li{
background: #ededed;
}
.docapi_menu_con ul li .sub_menu{
display: none;
list-style: none;
padding:5px 0px 0px 10px;
}
.docapi_menu_con ul li.has_children > a:after {
content: ' ';
height: 0;
position: absolute;
top:8px;
margin-left: 8px;
width: 0;
border-bottom: 7px solid transparent;
border-top: 7px solid transparent;
border-left: 7px solid #2f2f2f;
}
.docapi_menu_con ul li.has_children > a.active:after{
border-left: 7px solid #ffffff;
}
.docapi_menu_con ul li.has_children.open > a:after{
border-bottom: 0px solid transparent;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid #2f2f2f;
}
.docapi_content{
margin-left: 5%;
width: calc(100% - (300px + 5%));
}
/* .docapi_content table:first-of-type{
display: none;
} */