Layout Login

This commit is contained in:
chk
2026-03-29 19:14:05 +02:00
parent 40a83acb52
commit edd3ccb332
4 changed files with 19 additions and 1 deletions

View File

@@ -6,7 +6,10 @@ const services = [
{ id: "xyz", name: "Guacamole", url: "https://rp5guac.server.schooltech.ch/" },
{ id: "sim", name: "Simulation", url: "https://tcSimulation.server.schooltech.ch/" },
{ id: "video", name: "Video", url: "https://robotVideo.server.schooltech.ch/" },
{ id: "homing", name: "Homing", url:"https://robotHoming.server.schooltech.ch/"}
{ id: "homing", name: "Homing", url:"https://robotHoming.server.schooltech.ch/"},
{ id: "base", name:"RobotBase", url:"https://robotBase.server.schooltech.ch/"},
{ id: "ellbow", name:"RobotEllbow", url:"https://robotEllbow.server.schooltech.ch/"},
{ id: "hand", name:"RobotHand", url:"https://robotHand.server.schooltech.ch/"}
];
// DOM-Elemente

View File

@@ -26,6 +26,10 @@ header {
font-weight: bold;
}
.user {
margin-left: auto; /* ⬅️ Login/Logout nach rechts */
}
nav button {
background: transparent;
border: none;
@@ -86,3 +90,8 @@ nav button.active {
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
#login-btn {
width: 70px; /* oder 80 / 100 px wie du willst */
text-align: center;
}