-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (100 loc) · 3.25 KB
/
index.html
File metadata and controls
114 lines (100 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Algorithms Laboratory</title>
<style>
:root {
--bg-primary: #1e1e1e;
--text-primary: #ffffff;
--text-secondary: #aaaaaa;
--accent: #4CAF50;
--card-bg: #2d2d2d;
--card-hover: #3d3d3d;
--border: #555555;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: var(--bg-primary);
color: var(--text-primary);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
padding: 20px;
}
.header {
text-align: center;
margin-bottom: 40px;
}
h1 { color: var(--accent); margin-bottom: 10px; font-size: 2.5rem; }
p.subtitle { color: var(--text-secondary); max-width: 600px; line-height: 1.6; font-size: 1.1rem; }
.container {
width: 100%;
max-width: 450px;
}
.card {
background-color: var(--card-bg);
border: 1px solid var(--border);
border-radius: 12px;
padding: 30px;
text-decoration: none;
color: var(--text-primary);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
transform: translateY(-8px);
border-color: var(--accent);
background-color: var(--card-hover);
box-shadow: 0 12px 24px rgba(76, 175, 80, 0.15);
}
.card h3 { margin: 0 0 15px 0; font-size: 1.6rem; color: var(--accent); }
.card p { color: var(--text-secondary); font-size: 1.05rem; margin: 0; line-height: 1.6; }
.status {
margin-top: 25px;
font-size: 14px;
font-weight: bold;
display: flex;
align-items: center;
color: var(--accent);
}
.status::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
background-color: var(--accent);
border-radius: 50%;
margin-right: 10px;
box-shadow: 0 0 8px var(--accent);
}
footer {
margin-top: 60px;
color: #555;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="header">
<h1>Crypto Lab</h1>
<p class="subtitle">Interactive simulations exploring the inner workings of cryptographic standards.</p>
</div>
<div class="container">
<a href="aes-diffusion/" class="card">
<h3>AES: Diffusion Simulator</h3>
<p>Analyze how input bits propagate through SubBytes, ShiftRows, and MixColumns to create the avalanche effect.</p>
<div class="status">Active Module</div>
</a>
</div>
<footer>
© 2026 Crypto Algorithms Laboratory
</footer>
</body>
</html>