Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
625 B
2
Indexable
/* Dashboard.css */

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

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

nav a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

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;
}
Leave a Comment