aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy/css/messages.scss
blob: a388419ebc4b2b9acbad0e338047534c196d1dc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
44
45
46
47
48
49
50
/* ==========================================================================
   Messages
   ========================================================================== */

.messages {
  text-align: left;
  width: 60%;
  margin: auto 17%;

  > * {
    display: inline-block;
  }

  .install {
    text-align: left;

    &.error {
      border: 1px solid #c42608;
      color: #c00 !important;
      background: #fff0ef;
    }

    &.notice {
      border: 1px solid #ebcd41;
      color: #000;
      background: #fffcd3;
    }

    &.success {
      border: 1px solid #6dc70c;
      background: #e0fbcc !important;
    }
  }
}

.warning {
  font-weight: bold;
  display: block;
  width: 100%;
}

.more-info {
  font-size: 0.85em;
  line-height: 1.5;
  color: #aaa;

  a {
    color: #aaa;
  }
}