You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
887 B
CSS
59 lines
887 B
CSS
body {
|
|
display: flex;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #F2E8DB; /* Add this */
|
|
margin: 0;
|
|
}
|
|
|
|
.content-area {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.top-nav {
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem 1.5rem;
|
|
}
|
|
|
|
.nav-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: #1a202c;
|
|
margin: 0;
|
|
}
|
|
|
|
.icon-button {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: #718096;
|
|
padding: 0.5rem;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.icon-button:hover {
|
|
color: #4a5568;
|
|
}
|
|
|
|
.icon {
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
}
|
|
|
|
.content {
|
|
padding: 1.5rem;
|
|
} |