-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
鞋子管理功能: 支持添加修改删除新的鞋子,包括鞋子编号,鞋子品牌,鞋子颜色,鞋子图片,可以加入到对应鞋盒;
鞋盒管理:支持添加修改删除鞋盒,包括鞋盒编号,所装鞋子编号,所在的鞋柜位置; 鞋柜管理:支持添加鞋盒
- Loading branch information
1 parent
d3e61ea
commit d75cf08
Showing
4 changed files
with
1,018 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* style.css */ | ||
/* Global styles */ | ||
body { | ||
background-color: #f5f5f5; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
h1 { | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
h2 { | ||
margin-top: 40px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
/* Navigation bar */ | ||
.ui.menu { | ||
margin-bottom: 40px; | ||
} | ||
|
||
/* Main content area */ | ||
.ui.container { | ||
background-color: #ffffff; | ||
padding: 40px; | ||
border-radius: 4px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
/* Shoe List */ | ||
#shoe-list { | ||
margin-bottom: 40px; | ||
} | ||
|
||
/* Shoe Box List */ | ||
#shoe-box-list { | ||
margin-bottom: 40px; | ||
} | ||
|
||
/* Shoe Cabinet List */ | ||
#shoe-cabinet-list { | ||
margin-bottom: 40px; | ||
} | ||
|
||
/* Form */ | ||
.ui.form .field { | ||
margin-bottom: 20px; | ||
} | ||
|
||
/* Modal */ | ||
.ui.basic.modal { | ||
text-align: center; | ||
} | ||
|
||
/* Responsive */ | ||
@media only screen and (max-width: 767px) { | ||
.ui.container { | ||
padding: 20px; | ||
} | ||
} |
Oops, something went wrong.