142 lines
4.0 KiB
HTML
142 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Boltic Automation Reports</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #201715;
|
|
/* Body and header background color */
|
|
color: white;
|
|
/* Text color */
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
/* Full viewport height */
|
|
}
|
|
|
|
header {
|
|
position: fixed;
|
|
/* Stick header to top */
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background-color: #201715;
|
|
/* Same background color as body */
|
|
color: white;
|
|
padding: 10px 20px;
|
|
/* Reduced padding for smaller height */
|
|
display: flex;
|
|
align-items: center;
|
|
/* Vertically align items */
|
|
z-index: 1000;
|
|
/* Above all content */
|
|
font-size: 16px;
|
|
/* Smaller header font size */
|
|
border-bottom: 1px solid #ff592f;
|
|
}
|
|
|
|
.logo-container {
|
|
width: 150px;
|
|
/* Smaller logo container */
|
|
}
|
|
|
|
header img {
|
|
max-width: 100%;
|
|
/* Ensure logo fits container */
|
|
height: auto;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 0 10px;
|
|
/* Reduced margin for spacing */
|
|
font-size: 18px;
|
|
/* Smaller font size */
|
|
font-weight: 300;
|
|
/* Reduced font weight */
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
margin-top: 70px;
|
|
/* Adjusted margin for reduced header */
|
|
text-align: center;
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.btn {
|
|
display: block;
|
|
width: 250px;
|
|
padding: 12px;
|
|
margin: 10px 0;
|
|
text-align: center;
|
|
background-color: #ff592f;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
transition: background-color 0.3s, transform 0.2s;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #cc4826;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
/* Stick footer to bottom */
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 10px;
|
|
/* Reduced padding for smaller height */
|
|
background-color: #e9ecef;
|
|
color: #201715;
|
|
font-size: 12px;
|
|
/* Smaller footer font size */
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="logo-container">
|
|
<img src="https://cdn.pixelbin.io/v2/fyndcloud/fyndst/original/images/svgs/ic_boltic_logo_light.svg"
|
|
alt="Boltic Logo">
|
|
</div>
|
|
<h1>Automation Reports</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<ul class="button-container">
|
|
<!-- <li><a href="aa4d408a-7889-4c9d-b755-2d6f6de2b6f6-http/dev-asia" class="btn">DEV-ASIA-SOUTH1</a></li> -->
|
|
<li><a href="aa4d408a-7889-4c9d-b755-2d6f6de2b6f6-http/prod-asia" class="btn">PROD-ASIA-SOUTH1</a></li>
|
|
<!-- <li><a href="aa4d408a-7889-4c9d-b755-2d6f6de2b6f6-http/dev-us" class="btn">DEV-US-CENTRAL1</a></li> -->
|
|
<li><a href="aa4d408a-7889-4c9d-b755-2d6f6de2b6f6-http/prod-us" class="btn">PROD-US-CENTRAL1</a></li>
|
|
<li><a href="/uat-asia" class="btn">UAT-ASIA-CENTRAL1</a></li>
|
|
<li><a href="/uat-us" class="btn">UAT-US-CENTRAL1</a></li>
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 Boltic Automation. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |