reworked website structure

This commit is contained in:
ben
2026-08-04 15:54:38 +02:00
parent 2f51f069fa
commit 2a60358c9a
3 changed files with 0 additions and 0 deletions
+59
View File
@@ -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;
}