blob: 9a8b8bdb60ed1b2b90872688d64cd2fc5a49c60b (
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
|
/* SHEEP */
#no-message-selected-pane {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -100;
background: #e5e5e3;
padding: 30px;
vertical-align:middle;
text-align:center;
-webkit-transform: translate3d(0, 0, 0);
&:before{
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em;
}
.scene{
display:inline-block;
vertical-align:middle;
}
.text{
color:#666;
margin-bottom: 40px;
}
}
#no-mails-available-pane {
text-align: center;
line-height: 65vh;
.scene{
display:inline-block;
vertical-align:middle;
}
.text{
color:#666;
margin-bottom: 40px;
}
}
|