-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (58 loc) · 968 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.chatbox {
margin-top: 10px;
margin-bottom: 10px;
}
.send {
height: 70px;
}
.responsive-img-cus {
height: auto;
max-width: 80%;
margin-left: auto;
margin-right: auto;
display: block;
}
.send-mess {
height: 70px;
width: 100%;
position: fixed;
bottom: 0;
}
.mess-content {
padding: 10px;
display: inline-block;
border-radius: 10px;
}
.file-field1 {
position: relative;
}
.file-field1 input[type="file"] {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
width: 100%;
margin: 0;
padding: 0;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
font-size: 20px;
cursor: pointer;
opacity: 0;
}
button#send-btn {
margin-top: 15px;
}
@media only screen and (min-width: 993px) {
nav a.sidenav-trigger {
display: none !important;
}
}