Untitled
unknown
plain_text
2 years ago
655 B
6
Indexable
/* Dashboard.css */
header {
background-color: #333;
color: white;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-left {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.nav-right {
display: flex;
flex-direction: column;
align-items: flex-end;
}
nav a {
color: white;
text-decoration: none;
margin-bottom: 5px;
}
nav a:hover {
text-decoration: underline;
}
input[type="file"] {
margin-top: 10px;
}
button {
background-color: #4caf50;
color: white;
padding: 10px;
cursor: pointer;
border: none;
}
button:hover {
background-color: #45a049;
}
Editor is loading...
Leave a Comment