added a little frontend test
This commit is contained in:
+26
-1
@@ -1 +1,26 @@
|
||||
hier komt de main pagina
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Calendar</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="layout">
|
||||
<aside class="sidebar">
|
||||
<h2>Calendar</h2>
|
||||
<nav>
|
||||
<a href="#">Dashboard</a>
|
||||
<a href="#">Rooms</a>
|
||||
<a href="#">Events</a>
|
||||
<a href="#">Settings</a>
|
||||
</nav>
|
||||
</aside>
|
||||
<main class="content">
|
||||
<h1>Dashboard</h1>
|
||||
<div class="calendar">
|
||||
Kalender komt hier
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,59 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background: #080808;
|
||||
color: white;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
|
||||
.layout {
|
||||
display: grid;
|
||||
|
||||
grid-template-columns: 250px 1fr;
|
||||
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
|
||||
.sidebar {
|
||||
background: #111;
|
||||
padding: 20px;
|
||||
border-right: 1px solid #333;
|
||||
}
|
||||
|
||||
|
||||
.sidebar nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
|
||||
.sidebar a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
.sidebar a:hover {
|
||||
color: cyan;
|
||||
}
|
||||
|
||||
|
||||
.content {
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
background: #151515;
|
||||
border: 1px solid #333;
|
||||
border-radius: 10px;
|
||||
height: 500px;
|
||||
padding: 20px;
|
||||
}
|
||||
Reference in New Issue
Block a user