Untitled
unknown
css
2 years ago
846 B
4
Indexable
/* styles.css */ body { margin: 0; padding: 0; font-family: Arial, sans-serif; } .header { display: flex; justify-content: flex-end; padding: 10px; } .button { margin-left: 10px; padding: 5px 10px; background-color: #3498db; color: white; border: none; border-radius: 5px; cursor: pointer; } .menu-container { display: flex; height: calc(100vh - 250px); width: 400px /* Adjust for header and footer height */ } .menu { flex: 1; padding: 20px; border-right: 1px solid #ccc; } .menu:last-child { border-right: none; } .menu-grey-box { background-color: #aaaaaa; padding: 10px; border-radius: 5px; } /* Existing CSS styles remain the same */ .menu-bottom { padding: 20px; background-color: #f2f2f2; border-top: 1px solid #ccc; }
Editor is loading...