App.css 1.64 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 {
  display: flex;
  margin: 1px 0 1px 0;
  border: solid 3px bisque;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

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

.s_start {
  color: blue;
  /* 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;
}

.s_popup {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 5px);
  left: 20px;
  background: rgb(246, 246, 246);
  border: solid thin black;
  border-radius: 5px;
  display: none;
  padding: 10px;
  cursor: auto;
  width: 300px;
}

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

.spl > * {
  margin-bottom: 5px;
}

.spl > div {
  background-color: white;
  border: solid 1px rgb(235, 235, 235);
}

.spc {
  margin-top: 2px;
  margin-left: calc(100% - 50px);
  width: 50px;
  height: 35px;
  cursor: pointer;
}