..
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82 | @media only screen and (max-width: 768px) {
.page-centered {
width: 90%;
height: 30%;
position: absolute;
top: 35%;
left: 50%;
-ms-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
.sidebar {
position: fixed;
z-index: 1;
background-color: royalblue;
height: 100vh;
overflow-y: scroll;
display: none;
}
.menu {
display: block;
padding: 10px 20px;
background-color: royalblue;
color: white;
font-size: 1.5em;
}
#openChat {
float: right;
padding-top: 5px;
}
.display {
display: block;
}
.title {
width: 85%;
}
.report-header {
padding: 10px 20px;
font-size: 1em;
}
.dashboard {
padding-top: 80px;
}
.chat {
padding-top: 80px;
}
.image {
padding: 0px 5%;
width: 20%;
}
.message {
margin: 0px 2%;
width: 75%;
}
#showChat {
display: none;
}
#showCalc {
display: none;
}
#openCalc {
float: right;
position: relative;
top: 5px;
right: 20px;
display: block;
}
.reply {
width: 70%;
}
.mb-icon {
padding: 2% 4% 2% 0%;
cursor: pointer;
display: inline-block;
}
}
@media only screen and (max-width: 320px) {
.reply {
width: 68%;
}
}
|
|