-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht.css
41 lines (31 loc) · 776 Bytes
/
t.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
.person-name {
text-align: center;
background-color: #323f4b;
color: white;
}
.bg-container {
background-image: url("https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/chatbg.png");
height: 100vh;
background-size: cover;
}
.messages-container {
padding: 20px;
}
.message-sent {
text-align: right;
background-color: #47a3f3;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 8px;
color: #ffffff;
padding: 8px;
}
.message-received {
text-align: left;
background-color: #52606d;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
color: #ffffff;
padding: 8px;
}