Sha256: cb6ddec776a7fd9a7d742219a41d838d07d15fdd13ba12a5955ecf3ff928cc90

Contents?: true

Size: 1.61 KB

Versions: 1

Compression:

Stored size: 1.61 KB

Contents

/* Table of Contents
==================================================
# Alert
# Application
# Colors
# Media Queries */

/* # Alert
================================================== */
.alert-fixed {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1040;
}
.alert {
  background: rgba(85,94,113,1);
  border-bottom: 2px solid rgba(0,0,0,0.1);
  box-sizing: border-box;
  color: rgba(255,255,255,1);
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 10px 20px 9px 20px;
  width: 100%;
}
.alert > a {
  color: rgba(255,255,255,1);
  border-bottom: 1px dotted rgba(255,255,255,1);
  font-style: italic;
}
.alert-lined { border: 2px solid rgba(0,0,0,0.1); }
.alert-close {
  border: 0 !important;
  color: rgba(255,255,255,1) !important;
  float: right;
  font-size: 18px;
  line-height: 24px;
}

/* # Application
================================================== */
.alert.alert-app { width: calc(100% - 280px); }

/* # Colors
================================================== */
.alert-green,
.alert-success { background: rgba(27,192,109,1); }
.alert-orange,
.alert-warning { background: rgba(255,154,46,1); }
.alert-red,
.alert-error,
.alert-alert { background: rgba(225,80,80,1); }
.alert-black,
.alert-system { background: rgba(42,44,48,1); }

/* # Media Queries
================================================== */
@media only screen and (max-width: 1365px) {
  .alert.alert-app { width: calc(100% - 250px); }
}
@media only screen and (max-width: 1199px) {
  .alert.alert-app { width: calc(100% - 220px); }
}
@media only screen and (max-width: 959px) {
  .alert.alert-app { width: 100%; }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_frontend-4.5.1 vendor/assets/stylesheets/alert.scss