Untitled
unknown
plain_text
2 years ago
993 B
10
Indexable
/* DashboardStyles.css */
.dashboard-header {
background-color: #333;
color: white;
padding: 10px;
width: 100%;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
z-index: 1000; /* Ensure it's above other elements */
}
.dashboard-nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.dashboard-link,
.dashboard-upload-input,
.dashboard-image-link {
color: white;
text-decoration: none;
margin-bottom: 5px;
}
.dashboard-link:hover,
.dashboard-image-link:hover {
text-decoration: underline;
}
.dashboard-upload-input {
margin-top: 10px;
}
.dashboard-welcome-message {
margin-right: 15px;
}
.dashboard-button {
background-color: #4caf50;
color: white;
padding: 10px;
cursor: pointer;
border: none;
}
.dashboard-button:hover {
background-color: #45a049;
}
/* Add padding to body to avoid content being covered by fixed header */
body {
padding-top: 40px; /* Adjust as needed based on your header height */
}
Editor is loading...
Leave a Comment