-
Notifications
You must be signed in to change notification settings - Fork 0
/
section-invite.css
65 lines (60 loc) · 1.23 KB
/
section-invite.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
#id_section_invite {
background-color: rgb(207, 216, 220);
}
#id_section_invite {
position: relative;
box-shadow: 0px 4px 32px -4px #000;
z-index: 99;
}
#id_section_invite.affix {
position: fixed;
top: 0;
width: 100%;
}
@media (min-width: 768px) {
#id_section_invite {
min-height: 100px;
}
#id_div_section_fab_invite,
#id_div_section_name {
height: 100px;
}
#id_div_section_fab_invite>img {
position: absolute;
left: 50%;
top: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#id_div_section_name_content {
position: absolute;
top: 50%;
-ms-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
}
}
@media (max-width: 768px) {
#id_section_invite {
min-height: 1px;
}
#id_div_section_fab_invite {
padding-top: 15px;
text-align:center;
}
#id_div_section_fab_invite>img {
height: 50px;
width: 50px;
}
#id_div_section_name_content * {
text-align: center;
}
#id_div_section_name_content {
padding-bottom: 15px;
}
}