-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 1.25 KB
/
style.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
#box-chat{
position: fixed;
width: 210px;
height: 25px;
background-color: white;
border-radius: 5%;
border: none;
display: none;
}
/* @media only screen and (min-width:960px){
/* styles for browsers larger than 960px; */
/* #box-chat{
left: 32%;
top: 310px;
}
} */
/* @media only screen and (min-width:1440px){ */
/* styles for browsers larger than 1440px; */
/* #box-chat{
left: 39%;
top: 310px;
}
} */
@media only screen and (max-width:767px){
/* styles for browsers larger than 760px; */
#box-chat{
left: 32%;
top: 46%;
}
}
@media only screen and (min-width:768px){
/* styles for browsers larger than px; */
#box-chat{
left: 39.4%;
top: 46%;
}
}
@media only screen and (min-width:1120px){
/* styles for browsers larger than px; */
#box-chat{
left: 44.5%;
top: 46%;
}
}
/* @media only screen and (max-device-width:480px){
/* styles for mobile browsers smaller than 480px; (iPhone) */
/* #box-chat{
left: 39%;
top: 310px;
}
}
@media only screen and (device-width:768px){
/* default iPad screens */
/* #box-chat{
left: 39%;
top: 310px;
}
/* } */