Spaces:
Build error
Build error
File size: 508 Bytes
f51357f d17feb8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | /* css styles */
.reveal {
display: flex;
}
.reveal .slides {
flex: 1; /* Ensure slides take the remaining space */
}
.sidebar {
width: 200px;
background: #f4f4f4;
padding: 15px;
position: fixed;
height: 100%;
overflow-y: auto;
}
.sidebar h2 {
font-size: 18px;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar li {
margin: 10px 0;
}
.sidebar a {
text-decoration: none;
color: #333;
}
.sidebar a:hover {
text-decoration: underline;
}
|