Skip to content

Commit fcb49c2

Browse files
committed
create project
1 parent 2c2bf84 commit fcb49c2

55 files changed

Lines changed: 7113 additions & 52 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,3 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Object files
5-
*.o
6-
*.ko
7-
*.obj
8-
*.elf
9-
10-
# Linker output
11-
*.ilk
12-
*.map
13-
*.exp
14-
15-
# Precompiled Headers
16-
*.gch
17-
*.pch
18-
19-
# Libraries
20-
*.lib
21-
*.a
22-
*.la
23-
*.lo
24-
25-
# Shared objects (inc. Windows DLLs)
26-
*.dll
27-
*.so
28-
*.so.*
29-
*.dylib
30-
31-
# Executables
32-
*.exe
33-
*.out
34-
*.app
35-
*.i*86
36-
*.x86_64
37-
*.hex
38-
39-
# Debug files
40-
*.dSYM/
41-
*.su
42-
*.idb
43-
*.pdb
44-
45-
# Kernel Module Compile Results
46-
*.mod*
47-
*.cmd
48-
.tmp_versions/
49-
modules.order
50-
Module.symvers
51-
Mkfile.old
52-
dkms.conf
1+
/Bin
2+
bin/
3+
obj/

Document/back.png

11.7 KB
Loading

Document/css/doc.css

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
@charset "utf-8";
2+
*{
3+
color:rgba(255,255,255,.7);
4+
font-family:"consolas","Menlo","DejaVu Sans Mono","monaco","MonoSpace","courier new","微软雅黑","Microsoft Yahei";
5+
font-weight:300;
6+
background-repeat:no-repeat;
7+
/*text-shadow:0px 1px 1px #DDD;*/
8+
-webkit-font-smoothing:antialiased;
9+
}
10+
::selection { background-color: #5B6B8545; }
11+
::-moz-selection { background-color: #5B6B8545; }
12+
::-webkit-selection { background-color: #5B6B8545; }
13+
hr{
14+
height: 1px;
15+
border: none;
16+
margin: 10px;
17+
border-top: solid 1px #2b2b2b;
18+
}
19+
body{
20+
margin:0px;
21+
position:relative;
22+
font-size:14px;
23+
background-color:#343434;
24+
}
25+
h2{
26+
margin:0px 10px;
27+
padding-left:10px;
28+
border-left:solid 5px #0096C9;
29+
border-top:solid 1px #2b2b2b;
30+
border-bottom:solid 1px #2b2b2b;
31+
font-weight:bold;
32+
background-color:#505050;
33+
height:38px;
34+
line-height:38px;
35+
}
36+
p{margin:10px 25px;}
37+
a{
38+
color:#58b4e8;
39+
cursor:pointer;
40+
outline:none;
41+
text-decoration:none;
42+
}
43+
a:hover{
44+
color:#58b4e8;
45+
outline-style:none;
46+
}
47+
table{
48+
margin:20px;
49+
color: rgba(255,255,255,.7);
50+
font-size: 12px;
51+
border-spacing: 0px;
52+
border-top: solid 1px #1f1f1f;
53+
border-left: solid 1px #1f1f1f;
54+
background-color: #2b2b2b;
55+
}
56+
td{
57+
padding: 5px 20px;
58+
border-right: solid 1px #1f1f1f;
59+
border-bottom: solid 1px #1f1f1f;
60+
}
61+
pre{
62+
background-color: #1a1a1a;
63+
font-size: 12px;
64+
overflow: auto;
65+
padding:10px;
66+
display:inline-block;
67+
margin-top:0px;
68+
min-width:680px;
69+
}
70+
.span_center{
71+
display: inline-block;
72+
background-color: #0096c9;
73+
border-radius: 5px;
74+
padding: 1px 5px;
75+
color: white;
76+
font-size: 12px;
77+
}
78+
.span_title{
79+
margin-left:10px;
80+
display: inline-block;
81+
background-color: dodgerblue;
82+
padding: 2px 10px;
83+
/* border-radius: 5px; */
84+
font-size: 12px;
85+
position: relative;
86+
height: 20pxpx;
87+
line-height: 20px;
88+
}
89+
.span_title:after{
90+
content: ' ';
91+
position: absolute;
92+
border-left: solid 13px #2090ff;
93+
border-top: solid 12px transparent;
94+
border-bottom: solid 12px transparent;
95+
right: -13px;
96+
top: 0px;
97+
}
98+
.span_property{
99+
color:white;
100+
font-size: 12px;
101+
border-radius: 2px;
102+
background-color: gray;
103+
padding: 1px 4px;
104+
margin:0px 4px;
105+
}
106+
#div_body{
107+
108+
}
109+
#div_left{
110+
overflow:auto;
111+
height:100%;
112+
width:220px;
113+
position:fixed;
114+
background-color:#343434;
115+
border-right:solid 1px black;
116+
}
117+
.ul_group_root a{
118+
color:gray;
119+
font-weight:300px;
120+
height:30px;
121+
line-height:30px;
122+
display:block;
123+
padding:5px 15px;
124+
transition:background-color .5s;
125+
}
126+
.ul_group_root a:hover{
127+
color:white;
128+
background-color:deepskyblue;
129+
transition:background-color 0s;
130+
}
131+
.ul_group_root,.ul_group_root ul{
132+
margin:0px;
133+
padding:0px;
134+
list-style:none;
135+
font-size:12px;
136+
background-color:#1A1A1A;
137+
}
138+
.a_node_root{
139+
color:gray;
140+
font-size:14px;
141+
padding:5px;
142+
display:block;
143+
background-color:#343434;
144+
/*border-top:1px solid #1A1A1A;
145+
border-bottom:1px solid #1A1A1A;
146+
background-color:rgba(255,255,255,0.05);*/
147+
}
148+
.anchor_btn{
149+
transition:background-color 1s;
150+
}
151+
.anchor_btn.active{
152+
color:white;
153+
background-color:#0076A0;
154+
transition:background-color 0s;
155+
}
156+
.li_node_sub{
157+
text-align:right;
158+
}
159+
#div_right{
160+
margin-left:220px;
161+
}
162+
#div_right a{
163+
color: white;
164+
margin: 2px;
165+
padding: 1px 2px;
166+
border-radius: 2px;
167+
display: inline-block;
168+
font-size:12px;
169+
background-color: rgba(0,150,201,.2);
170+
border:solid 1px #0096C9;
171+
}
172+
#div_right ul{
173+
list-style:none;
174+
margin:5px;
175+
padding:0px 10px;
176+
}
177+
#div_img_node{
178+
text-align:center;
179+
margin:0px 10px;
180+
background-color:black;
181+
}
182+
#div_img_node img{
183+
width:50%;
184+
max-width:537px;
185+
}

Document/css/index.css

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
@charset "utf-8";
2+
*{
3+
font-family:"consolas","Menlo","DejaVu Sans Mono","monaco","MonoSpace","courier new","微软雅黑","Microsoft Yahei";
4+
font-weight:300;
5+
background-repeat:no-repeat;
6+
text-shadow:0px 1px 1px #DDD;
7+
-webkit-font-smoothing:antialiased;
8+
}
9+
::selection { background-color: #5B6B8545; }
10+
::-moz-selection { background-color: #5B6B8545; }
11+
::-webkit-selection { background-color: #5B6B8545; }
12+
a{
13+
outline:none;
14+
text-decoration:none;
15+
}
16+
p{line-height:25px;}
17+
img{max-width:100%;}
18+
ul{margin:0px;padding-left:20px;}
19+
li{margin:5px;}
20+
hr{
21+
height: 1px;
22+
border: none;
23+
margin: 30px 0px;
24+
border-top: solid 1px lightgray;
25+
}
26+
body{
27+
margin:0px;
28+
position:relative;
29+
font-size:14px;
30+
}
31+
#div_body{
32+
max-width:1074px;
33+
margin: 0 auto;
34+
box-shadow: 0px 0px 20px #222;
35+
}
36+
#div_img_node{
37+
text-align:center;
38+
font-size:0px;
39+
overflow:hidden;
40+
background-color:cornflowerblue;
41+
}
42+
#div_img_node img{
43+
width:50%;
44+
max-width:537px;
45+
box-shadow: 0px 0px 20px #222;
46+
}
47+
.span_title{
48+
font-size:40px;
49+
display:inline-block;
50+
margin:20px;
51+
text-align:center;
52+
position:relative;
53+
}
54+
.span_title:before{
55+
content: 'Copyright© DebugST@Crystal_lz';
56+
position: absolute;
57+
left: 50%;
58+
top: 100%;
59+
font-size: 11px;
60+
color: gray;
61+
width:100%;
62+
transform: translate(-50%, 0px);
63+
}
64+
.span_title:after{
65+
content: '(V 1.0)';
66+
font-size: 10px;
67+
position: absolute;
68+
background-color: hotpink;
69+
border-radius: 5px;
70+
padding: 2px;
71+
color: white;
72+
display: block;
73+
top: 0px;
74+
right: 0px;
75+
transform: translate(50%, -50%);
76+
}
77+
.a_top_btn{
78+
color:white;
79+
padding: 5px 20px;
80+
font-size: 16px;
81+
border-radius: 15px;
82+
background-color: cornflowerblue;
83+
margin:0px 10px;
84+
display:inline-block;
85+
}
86+
.span_note{
87+
color:cornflowerblue;
88+
margin: 2px;
89+
padding: 2px 5px;
90+
border-radius: 5px;
91+
background-color: #EEE;
92+
border:solid 1px #DDD;
93+
}

0 commit comments

Comments
 (0)