Sha256: aefe529b41ad3294f90baf208c24418e8bcd98280b89bb3a6bc81f5fa591da82

Contents?: true

Size: 714 Bytes

Versions: 1

Compression:

Stored size: 714 Bytes

Contents

.dropdown {
  $large-screen: 40em !default;
  $dropdown-distance-from-menu: 50px;

  .dropdown-container {
    display: inline-block;
    position: relative;
    text-align: center;
  }

  .dropdown-description {
    float: left;
    padding-right: 1em;
  }

  .dropdown-button {
    cursor: pointer;
    float: right;
    position: relative;
  }

  .dropdown-button::after {
    display: block;
    position: absolute;
  }

  .dropdown-menu {
    cursor: pointer;
    display: none;
    overflow: visible;
    position: absolute;
    text-align: left;
    top: $dropdown-distance-from-menu;
    transition: all 0.2s ease-in-out;
    width: 228px;
    z-index: 99999;
  }

  .show-menu {
    display: block;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
refills-0.2.0 source/stylesheets/refills/unstyled/_dropdown.scss