-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.css
65 lines (55 loc) · 1.11 KB
/
messages.css
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
61
62
63
64
65
.msgMask {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
display: flex;
color: rgb(50, 50, 50);
text-align: center;
background-color: rgb(0, 0, 0, 0.3);
border-radius: 10px;
font-size: 20px;
z-index: 2;
}
.msg {
border: 0px;
background-color: rgb(226, 240, 217);
text-align: left;
margin: auto;
font-family: calibri;
border-radius: 10px;
padding: 5px;
max-width: 500px;
box-shadow: 0 0 10px rgb(50, 50, 50);
}
.msgError {
background-color: rgb(255, 200, 200) !important;
}
.msgCaption {
vertical-align: top;
font-weight: bold;
height: 50px;
padding-left: 10px;
}
.msgBody {
padding: 30px 10px 0px 10px;
vertical-align: top;
}
.msgImg {
height: 400px;
}
.rect {
width: 30px;
height: 30px;
text-align: right;
vertical-align: middle;
display: table-cell;
background-color: maroon;
border-radius: 100px;
font-family: monospace;
box-shadow: 0 0 10px rgb(50, 50, 50);
}
body {
color: red;
}