notification.styl 660 字节
Newer Older
1 2 3
.stun-message
  position: fixed
  top: 1rem
4
  left: 50%
5
  z-index: $z-index2
6
  transform: translateX(-50%)
7 8 9 10 11

.stun-alert
  position: relative
  border-radius: 3px
  padding: 8px 12px
12
  font-size: $font-size-large
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
  line-height: 1rem
  color: $black-light
  background-color: #fff
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)

  &-success
    color: $alert-success

    & ~ i
      color: $alert-success

  &-info
    color: $alert-info

    & ~ i
      color: $alert-info

  &-warning
    color: $alert-warning

    & ~ i
      color: $alert-warning

  &-error
    color: $alert-error

    & ~ i
      color: $alert-error

  &-description
    margin-left: .5rem