parent
805afc3b91
commit
ff75b47945
@ -0,0 +1,120 @@
|
||||
/* entrepriseProfile.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 主容器样式 */
|
||||
.container {
|
||||
width: 80%;
|
||||
max-width: 800px;
|
||||
margin: 50px auto;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* 表单标签样式 */
|
||||
label {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
font-weight: bold;
|
||||
color: #004080; /* 深蓝色 */
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 按钮样式 - 圆角矩形 */
|
||||
input[type="button"] {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin-top: 20px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 显示区域样式 */
|
||||
#show {
|
||||
display: none;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
#show p {
|
||||
margin: 10px 0;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
#show label {
|
||||
color: #004080;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* 新建表单样式 */
|
||||
#new {
|
||||
display: none;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* 修改按钮样式 */
|
||||
#modifyButton {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin-top: 15px;
|
||||
background-color: #28a745; /* 绿色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
#modifyButton:hover {
|
||||
background-color: #218838; /* 鼠标悬停时加深绿色 */
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
width: 95%;
|
||||
margin: 20px auto;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="button"] {
|
||||
font-size: 16px; /* 移动端适当增大字体 */
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,64 @@
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 登录/注册区域容器 */
|
||||
#log, #sign, #logged, #modify {
|
||||
width: 300px;
|
||||
margin: 50px auto;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* 表单标签样式 */
|
||||
label {
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
font-weight: bold;
|
||||
color: #004080; /* 深蓝色 */
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
input[type="text"], input[type="password"] {
|
||||
width: calc(100% - 20px);
|
||||
padding: 8px;
|
||||
margin-top: 5px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 按钮样式 */
|
||||
input[type="button"] {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-top: 15px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 单选按钮样式 */
|
||||
input[type="radio"] {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
/* 已登录状态信息样式 */
|
||||
#logged p {
|
||||
margin: 5px 0;
|
||||
}
|
||||
@ -0,0 +1,106 @@
|
||||
/* mainPage.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 页面标题样式 */
|
||||
h2 {
|
||||
color: #004080; /* 深蓝色 */
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* 导航链接样式 */
|
||||
a {
|
||||
display: inline-block;
|
||||
margin: 10px 15px;
|
||||
padding: 10px 15px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
transition: background-color 0.3s ease;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 表格样式 */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 20px auto;
|
||||
background-color: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 表头样式 */
|
||||
thead th {
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* 表格行样式 */
|
||||
tbody tr:nth-child(even) {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
tbody tr:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
/* 表格单元格样式 */
|
||||
td {
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
/* 隐藏输入框样式 */
|
||||
#hiddenAccountStatus, #hiddenAccountAuthorization {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 已登录状态显示区域样式 */
|
||||
#loggedArea {
|
||||
margin: 20px 0;
|
||||
padding: 15px;
|
||||
border-radius: 8px;
|
||||
background-color: #e9f7fe;
|
||||
border: 1px solid #b3e0ff;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
margin: 10px 0;
|
||||
padding: 12px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
thead th, td {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,109 @@
|
||||
/* manage.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 主容器样式 */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
background-color: white;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 按钮样式 - 圆角矩形 */
|
||||
input[type="button"] {
|
||||
padding: 10px 20px;
|
||||
margin: 10px 5px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 表格样式 */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 20px 0;
|
||||
background-color: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 表头样式 */
|
||||
thead th {
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* 表格行样式 */
|
||||
tbody tr:nth-child(even) {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
tbody tr:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
/* 表格单元格样式 */
|
||||
td {
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
/* 表格标题样式 */
|
||||
h2 {
|
||||
color: #004080; /* 深蓝色 */
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* 查询按钮区域 */
|
||||
#accountManage, #recruitManage {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
padding: 15px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
thead th, td {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
input[type="button"] {
|
||||
width: 100%;
|
||||
margin: 5px 0;
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,110 @@
|
||||
/* recruitDetails.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 主容器样式 */
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 50px auto;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* 表单区域样式 */
|
||||
#new {
|
||||
display: none;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* 显示区域样式 */
|
||||
#show {
|
||||
display: none;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* 表单标签样式 */
|
||||
label {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
font-weight: bold;
|
||||
color: #004080; /* 深蓝色 */
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
input[type="text"] {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 按钮样式 - 圆角矩形 */
|
||||
input[type="button"] {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin-top: 20px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 显示信息样式 */
|
||||
#show p {
|
||||
margin: 10px 0;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
padding: 8px;
|
||||
background-color: white;
|
||||
border-radius: 5px;
|
||||
border-left: 4px solid #007bff;
|
||||
}
|
||||
|
||||
/* 隐藏元素样式 */
|
||||
#hiddenId {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
width: 95%;
|
||||
margin: 20px auto;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="button"] {
|
||||
font-size: 16px; /* 移动端适当增大字体 */
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,83 @@
|
||||
/* recruitManageForEntreprise.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 主容器样式 */
|
||||
#recruitManage {
|
||||
max-width: 1000px;
|
||||
margin: 50px auto;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* 表格样式 */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 20px 0;
|
||||
background-color: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 表头样式 */
|
||||
thead th {
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* 表格行样式 */
|
||||
tbody tr:nth-child(even) {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
tbody tr:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
/* 表格单元格样式 */
|
||||
td {
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 隐藏的账户信息样式 */
|
||||
#account {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#recruitManage {
|
||||
margin: 20px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
thead th, td {
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,163 @@
|
||||
/* search.css */
|
||||
|
||||
/* 设置全局字体及基础样式 */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background-color: #f0f8ff; /* 浅蓝色背景 */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* 主容器样式 */
|
||||
div {
|
||||
max-width: 800px;
|
||||
margin: 50px auto;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* 搜索表单区域样式 */
|
||||
form {
|
||||
margin-bottom: 30px;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* 表单标签样式 */
|
||||
label {
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
font-weight: bold;
|
||||
color: #004080; /* 深蓝色 */
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
input[type="text"] {
|
||||
width: calc(100% - 20px);
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 按钮样式 - 圆角矩形 */
|
||||
input[type="button"] {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin-top: 15px;
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px; /* 圆角 */
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: #0056b3; /* 鼠标悬停时加深蓝色 */
|
||||
}
|
||||
|
||||
/* 新建招聘链接样式 */
|
||||
a#new {
|
||||
display: none;
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
margin: 10px 0;
|
||||
background-color: #28a745; /* 绿色背景 */
|
||||
color: white;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
a#new:hover {
|
||||
background-color: #218838; /* 鼠标悬停时加深绿色 */
|
||||
}
|
||||
|
||||
/* 结果表格区域样式 */
|
||||
#resultTable {
|
||||
display: none;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
/* 表格样式 */
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 20px 0;
|
||||
background-color: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 表头样式 */
|
||||
thead th {
|
||||
background-color: #007bff; /* 蓝色背景 */
|
||||
color: white;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* 表格行样式 */
|
||||
tbody tr:nth-child(even) {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
tbody tr:hover {
|
||||
background-color: #e9ecef;
|
||||
}
|
||||
|
||||
/* 表格单元格样式 */
|
||||
td {
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* 响应式设计 */
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
div {
|
||||
margin: 20px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
form {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="button"], a#new {
|
||||
font-size: 16px; /* 移动端适当增大字体 */
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
thead th, td {
|
||||
padding: 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue