This commit is contained in:
parent
907d638a8c
commit
e09fb1ef6f
|
|
@ -792,68 +792,68 @@ class DeploymentServer:
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>DevOps 部署系统</title>
|
<title>DevOps 部署系统</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {{
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
margin: 50px auto;
|
margin: 50px auto;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}}
|
||||||
h1 {
|
h1 {{
|
||||||
color: #333;
|
color: #333;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}}
|
||||||
.info {
|
.info {{
|
||||||
background-color: #e3f2fd;
|
background-color: #e3f2fd;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}}
|
||||||
table {
|
table {{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||||
}
|
}}
|
||||||
th, td {
|
th, td {{
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid #ddd;
|
||||||
}
|
}}
|
||||||
th {
|
th {{
|
||||||
background-color: #1976d2;
|
background-color: #1976d2;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}}
|
||||||
tr:hover {
|
tr:hover {{
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}}
|
||||||
.deploy-link {
|
.deploy-link {{
|
||||||
color: #1976d2;
|
color: #1976d2;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}}
|
||||||
.deploy-link:hover {
|
.deploy-link:hover {{
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}}
|
||||||
.type-badge {
|
.type-badge {{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 3px 8px;
|
padding: 3px 8px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}}
|
||||||
.type-java {
|
.type-java {{
|
||||||
background-color: #ff9800;
|
background-color: #ff9800;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}}
|
||||||
.type-nodejs {
|
.type-nodejs {{
|
||||||
background-color: #4caf50;
|
background-color: #4caf50;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}}
|
||||||
.type-python {
|
.type-python {{
|
||||||
background-color: #2196f3;
|
background-color: #2196f3;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue