-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
128 lines (111 loc) · 2.18 KB
/
styles.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
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
119
120
121
122
123
124
125
126
127
128
.body{
background-color: ivory;
}
.chat-bubble{
background-color: lightgreen;
border: 2px solid darkgreen;
width: 40%;
min-height: 50px;
clear: both;
/* position: relative; */
border-radius: 50px;
text-align: center;
padding-top: 30px;
display: flex;
flex-direction: column;
}
.chat-name{
font-size: 24px;
background-color: White;
border: solid black 2px;
font-weight: bold;
width: auto;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 6px;
padding-right: 6px;
/* position: absolute; */
/* top: 0%;
left: 0%;
padding-bottom: 16px;*/
/* top: -10%; */
}
/* .chat-name::before{
content:'\f406';
font-family: "FontAwesome"
} */
/* .edit-button {
font-family: "FontAwesome";
} */
/* .chat-bubble::after {
content: '';
position: absolute;
right: -50px;
top: 0%;
border: 30px solid;
border-left-color:darkgreen;
background-color: transparent;
border-top-color: transparent;
border-bottom-color: transparent;
} */
/*
.chat-bubble:nth-child(2n){
float: right;
/* text-align: left; */
/* } */
.chat-name:nth-child(2n){
float: left;
text-align: right;
}
.text-field{
clear: both;
position: sticky;
bottom: 0%;
}
h1{
position: absolute;
top: 0;
font-size: 40px;
width: 100%;
}
p{
width: 100%;
font-size: 16px;
}
section{
width: 100vw;
border: solid 1pt black
}
.profile{
display: flex;
justify-content: top;
align-content: space-between;
}
.fa-user{
font-family: "FontAwesome";
font-size: 48pt;
}
#wrapper{
display: flex;
flex-direction: column;
}
button{
align-self: top;
max-height: 35px;
}
/* The new tag structure --
<section class="chat-bubble" id="${id}">
<div class="profile">
<i class="fas fa-user"></i>
<h3 class="chat-name" id="${id}chn">
${name}
</h3>
<button class="edit-button" id="${id}edt"><i class="far fa-edit"></i></button>
<button class="delete-button" id="${id}del">X</button>
</div>
<p id="${id}msg">${message}</p>
</section>
So...
Profile is flex-row
chat-bubble is flex-column
*/