Dashboard.css
Dashboard.cssunknown
plain_text
2 years ago
1.5 kB
7
Indexable
/* DashboardStyles.css */
.dashboard-header {
background-color:#2c3e50;
color: white;
padding: 10px;
width: 100%;
height:25%;
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: paleturquoise;
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;
color: orange;
}
.dashboard-button {
background-color: #4caf50;
color: white;
padding: 10px;
cursor: pointer;
border: none;
}
.dashboard-upload-input{
margin-left: 156px;
}
.dashboard-button:hover {
background-color: #45a049;
}
/* Add padding to body to avoid content being covered by fixed header */
.dashbody {
padding-top: 40px; /* Adjust as needed based on your header height */
}
.app-name{
color:aliceblue;
}
.dash-image{
display: flex;
}
.logout{
color: red;
font-size: x-large;
margin-right: 0;
}
body{
background-color:rgb(226, 193, 149)
}
.app-name{
color: black;
}
.logout{
background-color:red;
color: black;
padding: 5px;
cursor:pointer;
border: none;
}
.dashboard-nav-left{
margin-left: 2px;
}Editor is loading...
Leave a Comment