Skip to content
Snippets Groups Projects
cookies.css 1.26 KiB
Newer Older
  position: fixed;
Noé Le Cam's avatar
Noé Le Cam committed
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 1rem;
Noé Le Cam's avatar
Noé Le Cam committed
  transform: scale(0.8);
  transform-origin: bottom left;
/* #cookies::after {
Noé Le Cam's avatar
Noé Le Cam committed
  content: "";
  display: block;
  position: absolute;
  right: -10%;
  bottom: 0;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  background-color: var(--marblue);
Noé Le Cam's avatar
Noé Le Cam committed
#cookies > div {
  display: none;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(102, 102, 102);
  font-weight: 300;
  margin-left: 1rem;
Arch de Noé's avatar
Arch de Noé committed
  height: 3.5rem;
  width: 8rem;
  height: 100%;
  border-radius: 200px 200px 200px 200px;
  /* background-color: rgb(136, 164, 255); */
  /* color: black; */
}
Arch de Noé's avatar
Arch de Noé committed

#wip {
  position: fixed;
Noé Le Cam's avatar
Noé Le Cam committed
  top: -15px;
  left: 5rem;
  height: 100px;
}

@media screen and (min-width: 768px) {
  #cookies {
    position: fixed;
    bottom: 1.5rem;
    left: 1.8rem;
    display: flex;
    gap: 1rem;
  }
  #cookies::after {
    display: none;
  }

  #cookies > div {
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    text-align: right;
    gap: 1rem;
    width: 23rem;

    margin-top: 1.1rem;
    border-radius: 20px 300px 300px 500px;
    padding: 0.8rem 1rem;
  }

  #cookies > img {
    height: 5rem;
  }
}