blob: 3ea29e30348f47cf5613c62637f2628df1fb13c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.success {
color: var(--messageTextSuccessColor);
font-weight: bold;
text-decoration: underline;
font-size: var(--fontSizeMedium);
}
.error {
color: var(--messageTextErrorColor);
font-weight: bold;
text-decoration: underline;
font-size: var(--fontSizeMedium);
}
#mainMessage h3 {
border: none;
}
|