@import './base.css';

/* 全域 css  */
#app {
  font-weight: normal;
}

a, .green {
  text-decoration: none;
  color: inherit;
  transition: 0.4s;
  padding: 3px;
}

@media (hover: hover) {
  a:hover {
    color: skyblue
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.5;
  z-index: 999;
}

.w120px{
  width: 120px;
}

.w100px{
  width: 100px;
}

.w10em{
  width: 10em;
}

.bg-grass{
  background-color: #EEFFC8;
}

.bg-blue{
  background-color: #7BA0D7;
}

.bg-lightblue{
  background-color: #7BCCD7;
}