199 lines
6.2 KiB
HTML
199 lines
6.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Adhoc Demo Web</title>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--primary-color: #2563eb;
|
|
--hover-color: #1d4ed8;
|
|
--background-color: #f8fafc;
|
|
--card-background: #ffffff;
|
|
--text-color: #1e293b;
|
|
--shadow-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background-color: var(--background-color);
|
|
background-image:
|
|
radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
background-color: var(--card-background);
|
|
padding: 3rem;
|
|
border-radius: 1.5rem;
|
|
box-shadow: 0 20px 25px -5px var(--shadow-color), 0 8px 10px -6px var(--shadow-color);
|
|
animation: fadeIn 1s ease-out;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, var(--primary-color), #4f46e5);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: slideInDown 0.8s ease-out;
|
|
}
|
|
|
|
.logo {
|
|
max-width: 260px;
|
|
height: auto;
|
|
margin: 0 auto 2.5rem;
|
|
display: block;
|
|
animation: fadeIn 1s ease-out;
|
|
filter: drop-shadow(0 4px 6px var(--shadow-color));
|
|
}
|
|
|
|
.button-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
gap: 1.5rem;
|
|
animation: fadeIn 1.2s ease-out;
|
|
}
|
|
|
|
.button {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem 1.5rem;
|
|
background-color: var(--card-background);
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 1rem;
|
|
text-decoration: none;
|
|
color: var(--text-color);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, var(--primary-color), #4f46e5);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
z-index: 1;
|
|
}
|
|
|
|
.button:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 10px 15px -3px var(--shadow-color);
|
|
}
|
|
|
|
.button:hover::before {
|
|
opacity: 0.05;
|
|
}
|
|
|
|
.button img {
|
|
width: 80px;
|
|
height: 80px;
|
|
margin-bottom: 1rem;
|
|
object-fit: contain;
|
|
position: relative;
|
|
z-index: 2;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.button:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.button span {
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.container {
|
|
padding: 2rem 1rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.button-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.button {
|
|
padding: 1.5rem 1rem;
|
|
}
|
|
|
|
.button img {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<img src="logo.png" alt="Polo Informatico" class="logo">
|
|
<h1>Demo Adhoc Web</h1>
|
|
<div class="button-container">
|
|
<a href="https://adhocdemo.poloinformatico.it/AHRW42_DEMO1/jsp/index.jsp" class="button" target="_blank">
|
|
<img src="ahrw.png" alt="Adhoc Revolution Web Demo 1">
|
|
<span>Adhoc Revolution Web Demo 1</span>
|
|
</a>
|
|
<a href="https://adhocdemo.poloinformatico.it/AHRW42_DEMO2/jsp/index.jsp" class="button" target="_blank">
|
|
<img src="ahrw.png" alt="Adhoc Revolution Web Demo 2">
|
|
<span>Adhoc Revolution Web Demo 2</span>
|
|
</a>
|
|
<a href="https://adhocdemo.poloinformatico.it/AHRW42_LIFT/jsp/index.jsp" class="button" target="_blank">
|
|
<img src="taskmanager.png" alt="Adhoc Revolution Web Task Manager">
|
|
<span>Adhoc Revolution Web Task Manager</span>
|
|
</a>
|
|
<a href="https://adhocdemo.poloinformatico.it/AHI42_DEMO1/jsp/index.jsp" class="button" target="_blank">
|
|
<img src="ahi.png" alt="Adhoc Infinity Demo 1">
|
|
<span>Adhoc Infinity Demo 1</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |