Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.4 kB
1
Indexable
/* Dashboard.css */

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.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-right: 20px;
}

.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-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;
}

.dashbody {
  padding-top: 40px;
  text-align: center;
}

.app-name {
  color: aliceblue;
  margin-bottom: 20px;
}

.dashboard-upload-input {
  display: none;
}
Leave a Comment