~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to media/css/messages.css

  • Committer: Janos Gyerik
  • Date: 2012-04-04 13:22:47 UTC
  • Revision ID: burlyman@titan2x.com-20120404132247-2s7liq2i4e7nn8ul
minor improvement to create_user_profile signal

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * File: messages.css
3
 
 * Purpose: define the style of message boxes and inline messages
4
 
 *
5
 
 * */
6
 
 
7
 
.success { color: #66a; }
8
 
.failure { color: red; }
9
 
.error { color: red; }
10
 
.warning { color: #a0a; }
11
 
.notice { color: #080; }
12
 
 
13
 
.verbatim {
14
 
    background-color: #cdd;
15
 
    border: 1px dashed black;
16
 
    padding: .5em;
17
 
    font-family: monospace;
18
 
    white-space: pre;
19
 
}
20
 
 
21
 
.verbatim-copyable {
22
 
    background-color: #cdd;
23
 
    border: 1px dashed black;
24
 
    padding: .5em;
25
 
    font-family: monospace;
26
 
}
27
 
 
28
 
div.success {
29
 
    background-color: #ddf;
30
 
    border: 1px solid #88f;
31
 
    padding: 1em;
32
 
    text-align: left ! important;
33
 
    font-style: italic;
34
 
    margin: 1em 0;
35
 
}
36
 
div.success ul {
37
 
    margin: 0;
38
 
}
39
 
 
40
 
div.failure {
41
 
    background-color: #fdd;
42
 
    border: 1px solid #f88;
43
 
    padding: 1em;
44
 
    text-align: left ! important;
45
 
    font-style: italic;
46
 
    margin: 1em 0;
47
 
}
48
 
div.failure ul {
49
 
    margin: 0;
50
 
}
51
 
 
52
 
div.error {
53
 
    background-color: #fdd;
54
 
    border: 1px solid #f88;
55
 
    padding: 1em;
56
 
    text-align: left ! important;
57
 
    font-style: italic;
58
 
    margin: 1em 0;
59
 
}
60
 
div.error ul {
61
 
    margin: 0;
62
 
}
63
 
 
64
 
div.warning {
65
 
    background-color: #fdf;
66
 
    border: 1px solid #f8f;
67
 
    padding: 1em;
68
 
    text-align: left ! important;
69
 
    font-style: italic;
70
 
    margin: 1em 0;
71
 
}
72
 
div.warning ul {
73
 
    margin: 0;
74
 
}
75
 
 
76
 
div.notice {
77
 
    background-color: #dfd;
78
 
    border: 1px solid #8f8;
79
 
    padding: 1em;
80
 
    text-align: left ! important;
81
 
    font-style: italic;
82
 
    margin: 1em 0;
83
 
}
84
 
div.notice ul {
85
 
    margin: 0;
86
 
}
87
 
 
88
 
div.news {
89
 
    background-color: #ffa;
90
 
    border: 1px solid #cc0;
91
 
    padding: 1em;
92
 
    text-align: left ! important;
93
 
    font-style: italic;
94
 
    margin: 1em 0;
95
 
}
96
 
 
97
 
div.debug {
98
 
    background-color: #ddd;
99
 
    border: 1px solid #ccc;
100
 
    padding: 1em;
101
 
    text-align: left ! important;
102
 
    font-style: italic;
103
 
    margin: 1em 0;
104
 
    color: #888;
105
 
}
106
 
 
107
 
/* eof */