summaryrefslogtreecommitdiff
path: root/assets/css/src/alert.css
blob: 06aa0732270c1d153e950bf076bca77b3849d8a4 (plain)
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
51
52
53
54
55
56
57
58
59
60
/* alerts */
#main .alert,
.page .alert {
    margin-top: 10px;
}

.alert {
    padding: 8px 35px 8px 14px;
    margin-bottom: 10px;
    color: #c09853;
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    border-radius: 4px;
}

.alert-success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.alert-info {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-normal {
    color: #333;
    background-color: #f0f0f0;
    border-color: #ddd;
}

.alert ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.alert li {
    margin-left: 25px;
}

.alert-fade-out {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.1em;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    border-width: 1px 0 0;
    border-radius: 0;
}