Untitled

 avatar
unknown
plain_text
a year ago
656 B
5
Indexable
/* DashboardStyles.css */

.dashboard-header {
  background-color: #333;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-link,
.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;
}
Editor is loading...
Leave a Comment