Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions Ai.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
body {
font-family: Arial, sans-serif;
background: #f4f4f9;
color: #111;
margin: 0;
padding: 0;
}

h1, h2, h3 {
color: #2c3e50;
margin-top: 0;
}

.phase {
background: #fff;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
max-width: 900px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.phase:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.node {
display: inline-block;
margin: 5px;
padding: 10px 15px;
background: #3498db;
color: white;
border-radius: 50%;
font-weight: bold;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
transition: transform 0.2s;
}

.node:hover {
transform: scale(1.2);
cursor: pointer;
}

.edge {
color: #e67e22;
font-weight: bold;
}

ul {
list-style-type: disc;
padding-left: 20px;
}

pre {
background: #ecf0f1;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
font-family: Consolas, monospace;
}

a {
color: #2980b9;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

@media (max-width: 600px) {
.phase {
margin: 10px;
padding: 15px;
}

.node {
padding: 8px 12px;
margin: 3px;
font-size: 0.9em;
}
}