-
Notifications
You must be signed in to change notification settings - Fork 0
/
inbox.css
76 lines (58 loc) · 1.11 KB
/
inbox.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
66
67
68
69
70
71
72
73
74
75
76
body {
background-color:#F5DEB3;
}
.container {
border: 2px solid #dedede;
background-color: #f1f1f1;
border-radius: 5px;
}
.container:hover{
background-color:rgb(187, 183, 183);
}
.received{
border-color: rgb(104, 103, 103);
background-color: rgb(145, 138, 138);
}
#inbox-chat-button{
text-decoration: none;
color:black;
}
#img-left {
position: relative;
left:2%;
max-width: 70px;
width:100%;
}
.time-right {
position:relative;
left:93%;
bottom: 10%;
}
.time{
color:black;
font-weight:800;
}
#chat-message-left{
margin-left:10%;
overflow-wrap:break-word;
}
#sender-username{
margin-left:2%;
font-weight: 700;
overflow-wrap:break-word;
}
#receiver-username{
position: relative;
left:40%;
font-size:1.2em;
font-weight: 700;
overflow-wrap:break-word;
}
#new-message-text{
position: relative;
font-size: large;
font-weight: 900;
left:86%;
bottom:55px;
color:rgb(128, 11, 11);
}