Sha256: e9d48d73699fcc5d9c614aaa4bbf7b29817cb3806e748c443a37f105936649eb

Contents?: true

Size: 1.03 KB

Versions: 52

Compression:

Stored size: 1.03 KB

Contents

/* https://codyhouse.co/gem/css-slide-in-panel */

.panel-overlay {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0.3;
  display: none;
}

.panel-close {
  color: red;
  padding-right: 10px;
  font-size: 15px
}

.cd-panel {
  position: relative;
  visibility: hidden;
  transition: visibility 0s 0.6s;
}

.cd-panel.cd-panel--is-visible {
  visibility: visible;
  transition: visibility 0s 0s;
}

.cd-panel__container {
  z-index: 100;
  position: fixed;
  width: 800px;
  height: 100%;
  top: 0;
  transition: transform 0.3s 0s;
  overflow: scroll;
}

.cd-panel--from-right .cd-panel__container {
  right: 0;
  transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
  left: 0;
  transform: translate3d(-100%, 0, 0);
}

.cd-panel--is-visible .cd-panel__container {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.cd-panel__container .panel {
  background: white;
  min-height: 100vh;
}

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
rails_performance-1.4.0 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.4.0.alpha5 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.4.0.alpha4 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.4.0.alpha3 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.4.0.alpha2 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.4.0.alpha1 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.3.3 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.3.2 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.3.1 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.3.0 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.3 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.2 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.1 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0.alpha5 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0.alpha4 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0.alpha3 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0.alpha2 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.2.0.alpha1 app/views/rails_performance/stylesheets/panel.css
rails_performance-1.1.0 app/views/rails_performance/stylesheets/panel.css