-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (113 loc) · 2.15 KB
/
style.css
File metadata and controls
121 lines (113 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
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
margin : 0;
padding : 0;
}
body {
background-color: #343541;
color: white;
font-family: 'Poppins', sans-serif;
}
.container {
width: 100%;
height: 100vh;
display: flex;
}
.history {
width: 260px;
background-color: #202123;
padding: 8px;
}
.new-chat {
font-size: 14px;
display: flex;
gap: 0.75rem;
align-items: center;
padding: 12px;
border: 1px solid hsla(0,0%,100%,.2);
border-radius: 0.375rem;
cursor: pointer;
}
.new-chat svg {
width: 16px;
}
.prev-chat{
height: 80vh;
overflow-y: scroll;
}
.prev-chat-head {
font-size: 12px;
padding: 12px;
color: #8E8EA0;
}
.prev-chat-btn {
padding: 12px;
display: flex;
gap: 0.75rem;
align-items: center;
border-radius: 0.375rem;
cursor: pointer;
}
.prev-chat-btn:hover {
background-color: #2A2B32;
}
.prev-chat-btn p {
font-size: 14px;
color: #ececf1;
}
.profile {
margin-top: 12px ;
display: flex;
align-items: center;
padding: 12px;
gap: 0.75rem;
border-radius: 0.375rem;
cursor: pointer;
}
.profile:hover {
background-color: #2A2B32;
}
.profile img {
width: 20px;
height: 20px;
border-radius: 0.125rem;
}
.profile-name {
font-size: 14px;
}
.chat {
width: calc(100% - 260px);
padding: 24px;
}
.chat-container {
position: relative;
width: 760px;
height: 90vh;
margin: 0 auto;
}
.chat-container h1 {
font-size: 34px;
text-align: center;
padding-top: 120px;
}
.chat-input {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
gap: 0.75rem;
align-items: center;
margin-top: 24px;
padding: 12px;
background-color: #40414f;
border-radius: 0.375rem;
border: 1px solid rgba(32,33,35,.5);
}
.chat-input input {
width: 100%;
background-color: transparent;
border: none;
outline: none;
color: #ececf1;
font-size: 18px;
}