Untitled
unknown
plain_text
2 years ago
1.5 kB
4
Indexable
.dashboard-header {
background-color: #2c3e50;
color: white;
padding: 10px;
width: 100%;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
}
.dashboard-hamburger {
cursor: pointer;
padding: 5px;
margin-left: 10px;
}
.dashboard-hamburger div {
width: 30px;
height: 3px;
background-color: white;
margin: 6px 0;
transition: 0.4s;
}
.dashboard-hamburger:hover div:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
.dashboard-hamburger:hover div:nth-child(2) {
opacity: 0;
}
.dashboard-hamburger:hover div:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
.dashboard-nav-left {
display: none;
flex-direction: column;
background-color: #2c3e50;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
position: absolute;
top: 60px;
left: 0;
z-index: 1;
}
.dashboard-nav.open .dashboard-nav-left {
display: flex;
}
.dashboard-nav-left a {
color: white;
padding: 10px;
text-decoration: none;
display: block;
text-align: left;
width: 150px;
}
.dashboard-nav-left a:hover {
background-color: #45a049;
}
.dashboard-welcome-message {
margin-right: 20px;
color: orange;
}
.dashboard-content {
padding-top: 80px;
text-align: center;
}
.app-name {
color: aliceblue;
margin-bottom: 20px;
}
.dashboard-upload-input {
display: none;
}
.dashbody {
padding-top: 40px;
text-align: center;
}
Editor is loading...
Leave a Comment