Skip to content
This repository was archived by the owner on Oct 17, 2023. It is now read-only.

Commit 431c619

Browse files
authored
Merge pull request #17 from Qaraku/main
第一次提交
2 parents a377f0d + 7efbf19 commit 431c619

File tree

15 files changed

+1101
-0
lines changed

15 files changed

+1101
-0
lines changed

Qaraku/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#AAA
2+
3+
部分源代码引自csdn
4+
https://blog.csdn.net/qq_43198568/article/details/104432485?ops_request_misc=&request_id=&biz_id=102&utm_term=%E5%AD%A6%E7%94%9F%E4%BF%A1%E6%81%AF%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9Fhtml/css/js&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-0-104432485.142^v94^insert_down28v1&spm=1018.2226.3001.4187

Qaraku/css/add.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/*新增框架*/
2+
#addBlock {
3+
width: 420px;
4+
height: 400px;
5+
display: none;
6+
position: absolute;
7+
top: 15%;
8+
left: 35%;
9+
background-color: white;
10+
border-radius: 5px;
11+
z-index: 2;
12+
/*overflow: auto;*/
13+
}
14+
15+
/*新增框架头*/
16+
#addHeader {
17+
background-color: rgb(0, 39, 138);
18+
color: white;
19+
font-family: 黑体;
20+
font-weight: bold;
21+
height: 30px;
22+
padding-left: 10px;
23+
padding-top: 10px;
24+
/*display: table-row;*/
25+
}
26+
27+
/*新增框架主体*/
28+
#addMain {
29+
height: 290px;
30+
padding-top: 10px;
31+
padding-bottom: 10px;
32+
border-bottom: 1px solid #dadee1;
33+
}
34+
35+
#addMain table {
36+
width: 400px;
37+
}
38+
39+
#addMain tr {
40+
height: 40px;
41+
}
42+
43+
.addTableTd1 {
44+
padding-left: 15px;
45+
width: 120px;
46+
text-align: right;
47+
}
48+
49+
.addTableTd2 {
50+
padding-left: 20px;
51+
width: 250px;
52+
text-align: left;
53+
}
54+
55+
.addTableTd2 input {
56+
width: 150px;
57+
}

Qaraku/css/button.css

Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
#add
2+
3+
/*新增*/
4+
{
5+
border-radius: 63px;
6+
background: #ca7e4a;
7+
box-shadow: 28px 28px 57px #8b6666,
8+
-28px -28px 57px #ffffff;
9+
height: 30px;
10+
width: 75px;
11+
background-color: #ca7e4a;
12+
color: white;
13+
font-size: small;
14+
border: 0;
15+
}
16+
17+
#del
18+
19+
/*删除*/
20+
{
21+
border-radius: 63px;
22+
background: #ca7e4a;
23+
box-shadow: 28px 28px 57px #8b6666,
24+
-28px -28px 57px #ffffff;
25+
height: 30px;
26+
width: 75px;
27+
background-color: #b05f5f;
28+
color: white;
29+
font-size: small;
30+
border: 0;
31+
}
32+
33+
#previous
34+
35+
/*上一页*/
36+
{
37+
border-radius: 63px;
38+
background: #ca7e4a;
39+
box-shadow: 28px 28px 57px #8b6666,
40+
-28px -28px 57px #ffffff;
41+
height: 30px;
42+
width: 75px;
43+
background-color: #ca7e4a;
44+
color: white;
45+
font-size: small;
46+
border: 0;
47+
float: right;
48+
}
49+
50+
#next
51+
52+
/*下一页*/
53+
{
54+
border-radius: 63px;
55+
background: #ca7e4a;
56+
box-shadow: 28px 28px 57px #8b6666,
57+
-28px -28px 57px #ffffff;
58+
height: 30px;
59+
width: 75px;
60+
background-color: #b05f5f;
61+
color: white;
62+
font-size: small;
63+
border: 0;
64+
margin-left: 5px;
65+
float: right;
66+
}
67+
68+
#examine
69+
70+
/*查看*/
71+
{
72+
font-size: 16px;
73+
height: 20px;
74+
border: none;
75+
color: #3c4faf;
76+
background: none;
77+
border-radius: 95px;
78+
79+
/*background-color: #eef1f8;*/
80+
}
81+
82+
#update
83+
84+
/*修改*/
85+
{
86+
font-size: 16px;
87+
height: 20px;
88+
border: none;
89+
color: #3c4faf;
90+
background: none;
91+
/*background-color: #eef1f8;*/
92+
}
93+
94+
#submit
95+
96+
/*提交*/
97+
{
98+
height: 30px;
99+
width: 75px;
100+
background-color: #5cb85c;
101+
color: black;
102+
border: 1px solid #dadee1;
103+
}
104+
105+
#addCancel
106+
107+
/*新增中的取消*/
108+
{
109+
height: 30px;
110+
width: 75px;
111+
background-color: white;
112+
color: black;
113+
border: 1px solid #dadee1;
114+
margin-left: 5px;
115+
}
116+
117+
#preservation
118+
119+
/*保存*/
120+
{
121+
height: 30px;
122+
width: 75px;
123+
background-color: #5cb85c;
124+
color: black;
125+
border: 1px solid #dadee1;
126+
}
127+
128+
#updateCancel
129+
130+
/*修改中的取消*/
131+
{
132+
height: 30px;
133+
width: 75px;
134+
background-color: white;
135+
color: black;
136+
border: 1px solid #dadee1;
137+
margin-left: 5px;
138+
}
139+
140+
#examineCancel
141+
142+
/*修改中的取消*/
143+
{
144+
height: 30px;
145+
width: 75px;
146+
background-color: white;
147+
color: black;
148+
border: 1px solid #dadee1;
149+
/*margin-left: 5px;*/
150+
}
151+
152+
#confirm
153+
154+
/*确认*/
155+
{
156+
height: 30px;
157+
width: 75px;
158+
background-color: #5cb85c;
159+
color: black;
160+
border: 1px solid #dadee1;
161+
}
162+
163+
#delCancel
164+
165+
/*删除中的取消*/
166+
{
167+
height: 30px;
168+
width: 75px;
169+
background-color: white;
170+
color: black;
171+
border: 1px solid #dadee1;
172+
margin-left: 5px;
173+
}

Qaraku/css/del.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*删除框架*/
2+
#delBlock {
3+
width: 420px;
4+
height: 400px;
5+
display: none;
6+
position: absolute;
7+
top: 15%;
8+
left: 35%;
9+
background-color: white;
10+
border-radius: 5px;
11+
z-index: 2;
12+
/*overflow: auto;*/
13+
}
14+
15+
/*新增框架头*/
16+
#delHeader {
17+
background-color: rgb(0, 39, 138);
18+
color: white;
19+
font-family: 黑体;
20+
font-weight: bold;
21+
height: 30px;
22+
padding-left: 10px;
23+
padding-top: 10px;
24+
}
25+
26+
/*新增框架主体*/
27+
#delMain {
28+
height: 280px;
29+
padding-left: 20px;
30+
padding-top: 10px;
31+
padding-bottom: 10px;
32+
border-bottom: 1px solid #dadee1;
33+
}
34+
35+
#delMain p {
36+
font-size: 20px;
37+
}
38+
39+
#delMessage {
40+
font-size: 20px;
41+
}

Qaraku/css/examine.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*查看框架*/
2+
#examineBlock {
3+
width: 420px;
4+
height: 400px;
5+
display: none;
6+
position: absolute;
7+
top: 15%;
8+
left: 35%;
9+
background-color: white;
10+
border-radius: 5px;
11+
z-index: 2;
12+
/*overflow: auto;*/
13+
}
14+
15+
/*框架头*/
16+
#examineHeader {
17+
background-color: rgb(0, 39, 138);
18+
color: white;
19+
font-family: "微软雅黑";
20+
font-weight: bold;
21+
height: 30px;
22+
padding-left: 10px;
23+
padding-top: 10px;
24+
25+
}
26+
27+
/*框架主体*/
28+
#examineMain {
29+
height: 290px;
30+
padding-top: 10px;
31+
padding-bottom: 10px;
32+
border-bottom: 1px solid #dadee1;
33+
34+
}
35+
36+
#examineMain table {
37+
width: 400px;
38+
background-color: rgb(255, 255, 255);
39+
border-radius: 63px;
40+
}
41+
42+
#examineMain tr {
43+
height: 40px;
44+
}
45+
46+
.examineTableTd1 {
47+
padding-left: 15px;
48+
width: 120px;
49+
text-align: right;
50+
}
51+
52+
.examineTableTd2 {
53+
padding-left: 20px;
54+
width: 250px;
55+
text-align: left;
56+
}
57+
58+
.examineTableTd2 input {
59+
color: #545454;
60+
width: 150px;
61+
background-color: #ebebe4;
62+
border: 1px solid #a9a9a9;
63+
}

0 commit comments

Comments
 (0)