-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (123 loc) · 2.35 KB
/
style.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
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: 'Open Sans', sans-serif;
/* display: flex;
flex-direction: column;
justify-content: center;
align-items: center; */
display: grid;
place-items: center;
background-color: #ebebeb;
}
.title {
margin: 20px 0;
}
.main {
border: 8px solid #dddddd;
border-radius: 24px;
overflow: hidden;
}
.name {
display: flex;
font-size: 32px;
font-weight: 700;
padding: 8px 16px;
color: #7e7e7e;
background-color: #ebebeb;
}
.name > span {
color: #bbb;
}
.name-input {
font-size: 24px;
font-weight: 700;
color: #7e7e7e;
flex-grow: 1;
border: none;
margin: 0px 12px;
outline: none;
background-color: #ebebeb;
}
.message-container {
display: flex;
flex-direction: column;
background-color: #f6f6f6;
width: 400px;
height: 600px;
overflow-y: scroll;
overflow-x: hidden;
}
.message-left,
.message-right {
list-style: none;
padding: 8px 12px;
margin: 12px;
max-width: 250px;
font-size: 18px;
word-wrap: break-word;
}
.message-left {
border-radius: 20px 20px 20px 0px;
align-self: flex-start;
background-color: #fff;
box-shadow: -2px 2px 4px #dcdcdc;
}
.message-right {
border-radius: 20px 20px 0px 20px;
align-self: flex-end;
background-color: #2d2d2d;
box-shadow: 2px 2px 4px #dcdcdc;
color: #f6f6f6;
}
.message-left > p > span,
.message-right > p > span {
display: block;
font-style: italic;
font-size: 12px;
margin-top: 4px;
}
.feedback {
font-style: italic;
font-size: 14px;
padding: 0px 16px 16px 16px;
color: #2d2d2d;
text-align: center;
}
.message-form {
display: flex;
justify-content: space-between;
width: 400px;
}
.message-input {
flex-grow: 1;
height: 48px;
font-size: 16px;
border: none;
outline: none;
padding: 0 12px;
background-color: #fff;
}
.send-button {
height: 48px;
font-size: 16px;
border: none;
padding: 0px 20px;
outline: none;
background-color: #fff;
cursor: pointer;
}
.v-divider {
height: 48px;
width: 2px;
background-color: #f6f6f6;
}
.clients-total {
margin: 20px 0;
color: #7e7e7e;
}