-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
80 lines (69 loc) · 1.1 KB
/
Copy pathindex.css
File metadata and controls
80 lines (69 loc) · 1.1 KB
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
:root{
font-size : 18px;
}
body {
margin: 0;
padding: 0;
}
.container {
padding-right: 0px;
padding-left: 0px;
}
/*stop nav bar collapse*/
/*nav bar collapse*/
.card-body{
display: flex;
flex-direction: row;
align-items: center;
}
.badge{
align-self: flex-start;
}
.profile-pic{
max-width : 6em;
max-height : 6em;
}
.notification-time{
display: flex;
flex-direction: column;
align-items : flex-end;
}
/*msg div*/
.msg-body{
padding-top: 65px;
padding-bottom: 65px;
}
.msg-received{
position: relative;
background: #00aabb;
border-radius: .4em;
padding : 8px;
margin : 4px 0 0 4px;
max-width: 60%;
}
.msg-sent{
position: relative;
background: #04ee81;
border-radius: .4em;
padding : 8px;
margin : 4px 4px 0px 0px;
max-width: 60%;
}
.msg-time{
font-size: .5em;
}
/*send icon*/
#sendIcon {
background-color: #00aabb;
}
#messageBox{
border-color: slategrey;
}
.change-profile-pic{
max-width : 10em;
max-height : 10em;
}
a{
text-decoration: none;
color:inherit;
}