Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/dds_cookieinfo / css / dds_cookieinfo.css
Size: Mime:
.cookie-info {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #d6d6d6;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  z-index: 999;
}
.cookie-info.section {
  padding: 25px 0;
}
@media (min-width: 992px) {
  .cookie-info.section {
    padding: 50px 0;
  }
}
.cookie-info__headline {
  font-size: 25px;
  margin-bottom: 15px;
}
.cookie-info__open {
  left: 20px;
  bottom: 0;
  border: none;
  background-color: #d6d6d6;
  font-size: 12px;
  line-height: 20px;
  border-radius: 2px 2px 0 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: fixed;
  opacity: .6;
  cursor: pointer;
  will-change: transform;
}
.cookie-info__open:hover {
  opacity: 1;
}
.cookie-info__text {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .cookie-info__text {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .cookie-info__text {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .cookie-info__text {
    width: 1170px;
  }
}
.cookie-info__text:after, .cookie-info__text:before {
  content: " ";
  display: table;
}
.cookie-info__text:after {
  clear: both;
}
.cookie-info__close {
  font-size: 14px;
  cursor: pointer;
  border: none;
  margin-left: auto;
  background-color: #575757;
  color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 4px;
  height: 50px;
  padding: 0 50px;
}
.cookie-info__close:hover {
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .2);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .2);
}
body.cookie-info-show .cookie-info {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1;
}
body.cookie-info-show .cookie-info-open {
  opacity: 0;
}