-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.css
More file actions
118 lines (110 loc) · 2.15 KB
/
Copy pathmessage.css
File metadata and controls
118 lines (110 loc) · 2.15 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* css related to notification.html, currently only for top section with navbar */
/* header css starts here */
.feed header {
border-bottom: 2px solid #eee;
}
/* header css ends here */
/* header top section css begins here */
.top-section {
display: flex;
margin-inline: 1rem;
margin-block-start: 1rem;
}
.top-section span {
font-weight: bold;
}
.top-section i {
margin-left: auto;
opacity: 0.7;
cursor: pointer;
position: relative;
}
.top-section i::after {
content: "";
position: absolute;
background-color: black;
height: 1.8rem;
width: 1.8rem;
opacity: 0;
border-radius: 50%;
top: -0.4rem;
left: -0.4rem;
}
.top-section i:hover::after {
opacity: 0.3;
}
.header_name{
margin-left: 15px;
margin-top: 10px;
font-size: 23px;
}
.header_email{
color: gray;
margin-left: 15px;
margin-top: -10px;
}
.msg_main{
width: 600px;
height: 80%;
margin: 10px;
}
.msg_box{
height: 90%;
display: flex;
flex-direction: column;
}
.msg_text{
height: 10%;
}
.msg_text_input{
width: 90%;
margin: auto;
background-color: rgb(184, 184, 184);
height: 40px;
border-radius: 20px;
margin-top: 5px;
display: flex;
flex-direction: row;
padding-top: 8px;
color: black;
padding-left: 30px;
padding-right: 10px;
}
.msg_card{
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
.msg_actual{
line-height: 100%;
background-color: #a1d5f5;
padding: 10px;
border-radius: 15px 15px 15px 0;
max-width: 80%;
width: fit-content;
}
.msg_date_time{
color: rgb(114, 114, 114);
font-size: 13px;
}
.msg_card_right{
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
float: right;
}
.msg_actual_right{
line-height: 100%;
background-color: #ececec;
padding: 10px;
border-radius: 15px 15px 0 15px;
max-width: 80%;
width: fit-content;
float: right;
}
.msg_date_time_right{
color: gray;
font-size: 13px;
margin-top: -2px;
}
/* header top section css ends here */