- Interactive mission selector with metadata-driven design - 5 educational missions (basics + advanced) - AI assistant roles (Deepbit, Bugsy, Schnippsi, Tobi) - SnakeCam gesture recognition system - Token tracking utilities - CLAUDE.md documentation - .gitignore for logs and secrets
63 lines
940 B
CSS
Executable File
63 lines
940 B
CSS
Executable File
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #111;
|
|
color: #eee;
|
|
text-align: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
color: #90ee90;
|
|
}
|
|
|
|
.video-container {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
img {
|
|
width: 320px;
|
|
height: auto;
|
|
border: 2px solid #555;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
img.mirrored {
|
|
/* transform: scaleX(-1); Spiegelung horizontal */
|
|
transform: none;
|
|
}
|
|
|
|
form {
|
|
display: inline-block;
|
|
text-align: left;
|
|
background: #222;
|
|
padding: 15px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
label, select, input, button {
|
|
display: block;
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
input, select {
|
|
padding: 6px;
|
|
border-radius: 4px;
|
|
border: none;
|
|
}
|
|
|
|
button {
|
|
background-color: #28a745;
|
|
color: white;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
border: none;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #218838;
|
|
}
|