-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·148 lines (146 loc) · 2.6 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·148 lines (146 loc) · 2.6 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/* ── API Reference Styles ── */
.method-badge {
display: inline-block;
padding: 4px 10px;
border-radius: 4px;
font-weight: bold;
font-size: 13px;
font-family: monospace;
color: #fff;
margin-right: 8px;
vertical-align: middle;
}
.method-post {
background-color: #49cc90;
}
.endpoint-path {
font-family: monospace;
font-size: 15px;
font-weight: bold;
color: #333;
vertical-align: middle;
}
.endpoint-header {
background-color: #f7f7f7;
border: 1px solid #e0e0e0;
border-radius: 6px;
padding: 12px 16px;
margin-bottom: 16px;
}
.param-table {
width: 100%;
border-collapse: collapse;
margin: 12px 0;
font-size: 14px;
}
.param-table th {
background-color: #4b4b4b;
color: #fff;
padding: 8px 12px;
text-align: left;
font-weight: 600;
}
.param-table td {
padding: 8px 12px;
border-bottom: 1px solid #e8e8e8;
}
.param-table tr:hover {
background-color: #f5f5f5;
}
.param-required {
color: #e74c3c;
font-weight: bold;
font-size: 11px;
}
.param-optional {
color: #7f8c8d;
font-size: 11px;
}
.param-type {
font-family: monospace;
color: #8e44ad;
font-size: 13px;
}
.error-table {
width: 100%;
border-collapse: collapse;
margin: 12px 0;
font-size: 13px;
}
.error-table th {
background-color: #e74c3c;
color: #fff;
padding: 8px 12px;
text-align: left;
}
.error-table td {
padding: 8px 12px;
border-bottom: 1px solid #e8e8e8;
vertical-align: top;
}
.error-table tr:hover {
background-color: #fdf2f2;
}
.error-code {
font-family: monospace;
font-weight: bold;
white-space: nowrap;
}
.response-section {
border-left: 4px solid #49cc90;
padding-left: 16px;
margin: 16px 0;
}
.info-box {
background-color: #eaf4fc;
border-left: 4px solid #3498db;
padding: 12px 16px;
border-radius: 0 6px 6px 0;
margin: 16px 0;
font-size: 14px;
}
.tag-label {
display: inline-block;
padding: 2px 8px;
border-radius: 3px;
font-size: 11px;
font-weight: 600;
color: #fff;
margin-left: 8px;
vertical-align: middle;
}
.tag-projects { background-color: #3498db; }
.tag-stations { background-color: #e67e22; }
.tag-files { background-color: #9b59b6; }
.used-by {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 4px;
padding: 10px 14px;
margin: 12px 0;
font-size: 13px;
}
.used-by code {
background-color: #eef;
padding: 1px 4px;
border-radius: 3px;
}
.section-divider {
border: none;
border-top: 2px solid #e0e0e0;
margin: 32px 0;
}