App.css 1.11 KB
h1,
h2 {
  margin: 0;
}

.App {
  margin: 8px;
}

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

/* Calendar */

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

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

.ScheduleItem {
  height: 23px;
  display: flex;
  margin: 1px 0 1px 0;
  border: solid 3px bisque;
  border-radius: 3px;
}

.ScheduleItem > span {
  line-height: 23px;
  vertical-align: middle;
  margin-right: 3px;
  font-size: small;
}

.s_start {
  color: deepskyblue;
  /* text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white; */
}

.s_end {
  color: crimson;
}

.s_symbol {
  width: 21px;
  height: 21px;
  margin: 1px 3px 1px 1px;
  border-radius: 3px;
  padding: 0;
}