Skip to content

Commit

Permalink
鞋子管理功能: 支持添加修改删除新的鞋子,包括鞋子编号,鞋子品牌,鞋子颜色,鞋子图片,可以加入到对应鞋盒;
Browse files Browse the repository at this point in the history
鞋盒管理:支持添加修改删除鞋盒,包括鞋盒编号,所装鞋子编号,所在的鞋柜位置;
鞋柜管理:支持添加鞋盒
  • Loading branch information
charging-kuafuai committed Jun 20, 2024
1 parent d3e61ea commit d75cf08
Show file tree
Hide file tree
Showing 4 changed files with 1,018 additions and 0 deletions.
61 changes: 61 additions & 0 deletions css/style.css
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;
}
}
Loading

0 comments on commit d75cf08

Please sign in to comment.