This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>CryptoSeals - Cesare</title>
|
<title>CryptoSeals - Cesare</title>
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<script src="cesare.js" defer></script>
|
<script src="cesare.js" defer></script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>CryptoSeals - RSA</title>
|
<title>CryptoSeals - RSA</title>
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<script src="rsa.js" defer></script>
|
<script src="rsa.js" defer></script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -213,6 +213,43 @@ footer a {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Stili speciali solo per le card del team */
|
||||||
|
.team-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 30px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.team-card {
|
||||||
|
background: #f3f4f6;
|
||||||
|
padding: 30px 20px;
|
||||||
|
border-radius: 15px;
|
||||||
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
|
||||||
|
width: 280px;
|
||||||
|
text-align: center;
|
||||||
|
transition: transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.team-card:hover {
|
||||||
|
transform: translateY(-10px);
|
||||||
|
/* Effetto sollevamento al passaggio del mouse */
|
||||||
|
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
font-size: 60px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ruolo {
|
||||||
|
color:#10b981;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
/* --- RESPONSIVE --- */
|
/* --- RESPONSIVE --- */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.crypto-columns {
|
.crypto-columns {
|
||||||
|
|||||||
@@ -4,45 +4,9 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>CryptoSeals - Il Team</title>
|
<title>CryptoSeals - Il Team</title>
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<style>
|
<script src="team.js" defer></script>
|
||||||
/* Stili speciali solo per le card del team */
|
|
||||||
.team-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 30px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-top: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.team-card {
|
|
||||||
background: white;
|
|
||||||
padding: 30px 20px;
|
|
||||||
border-radius: 15px;
|
|
||||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
|
|
||||||
width: 250px;
|
|
||||||
text-align: center;
|
|
||||||
transition: transform 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.team-card:hover {
|
|
||||||
transform: translateY(-10px);
|
|
||||||
/* Effetto sollevamento al passaggio del mouse */
|
|
||||||
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.avatar {
|
|
||||||
font-size: 60px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ruolo {
|
|
||||||
color: #3498db;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -72,16 +36,16 @@
|
|||||||
<div class="team-card">
|
<div class="team-card">
|
||||||
<div class="avatar">👨💻</div>
|
<div class="avatar">👨💻</div>
|
||||||
<h2>Elisabetta Raione</h2>
|
<h2>Elisabetta Raione</h2>
|
||||||
<p class="ruolo">Lead Developer Java & Web</p>
|
<p class="ruolo">Foca 1</p>
|
||||||
<p style="color: #777; font-size: 14px;">Si occupa dell'architettura del server Javalin e
|
<p style="color: #0b0f19; font-size: 14px;">Si occupa dell'architettura del server Javalin e
|
||||||
dell'integrazione con il frontend.</p>
|
dell'integrazione con il frontend.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="team-card">
|
<div class="team-card">
|
||||||
<div class="avatar">🕵️♂️</div>
|
<div class="avatar">🕵️♂️</div>
|
||||||
<h2>Manuela Mango</h2>
|
<h2>Manuela Mango</h2>
|
||||||
<p class="ruolo">Esperto Crittografia</p>
|
<p class="ruolo">Foca 2</p>
|
||||||
<p style="color: #777; font-size: 14px;">Specializzato nell'implementazione matematica degli algoritmi
|
<p style="color: #0b0f19; font-size: 14px;">Specializzato nell'implementazione matematica degli algoritmi
|
||||||
RSA e Vigenère.</p>
|
RSA e Vigenère.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user