App.css 644 Bytes
h1,
h2 {
  margin: 0;
}

.App {
  margin: 12px;
}

/* Calendar */

.Calendar {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  display: flex;
}

button {
  cursor: pointer;
  background-color: white;
  color: black;
  border: solid thin;
  border-color: lavender;
  border-radius: 3px;
}

button {
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

button:hover:not(:disabled) {
  background-color: rgba(39, 197, 250, 0.334);
  color: white;
}

button:active:not(:disabled) {
  background-color: rgba(39, 197, 250, 0.548);
}

button:disabled {
  cursor: auto;
  color: rgb(209, 209, 209);
}