Newer
Older
2024-Nakgawa / scss / button.scss
@Nakagawa.K Nakagawa.K on 10 May 2024 680 bytes 追加
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px; 
  background: rgba(0, 165, 160, 0.5);
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;

  &.is_active {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    transition: 0.2s;
    background: rgba(255, 90, 95, 0.5);
  }
}

.link-items {
  display: flex;
  justify-content: center;
  gap: 20px;

  .link-item {
    display: block;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    border-radius: 50px;
  }

}