-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatbot.css
More file actions
108 lines (103 loc) · 1.94 KB
/
chatbot.css
File metadata and controls
108 lines (103 loc) · 1.94 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;
}
body{
width: 100%;
height:100vh;
}
.chat{
width: 100%;
height: 80%;
background-color: whitesmoke;
display: flex;
flex-direction: column;
gap:20px;
overflow: auto;
}
.userchat{
width: 60%;
position: relative;
left:40%;
padding: 20px;
padding-right: 10px;
}
.uca{
width: 90%;
padding: 20px;
background-color:#1a2a3a;
color: whitesmoke;
border-radius: 40px 0px 40px 40px;
box-shadow: 2px 2px 2px aqua;
display: flex;
flex-direction: column;
gap:10px;
}
.chooseimg{
width: 30%;
}
.aichat{
width: 60%;
position: relative;
padding: 20px;
}
.aca{
width: 90%;
padding: 20px;
background-color:#7fc7d9;
position: relative;
left:10%;
color: whitesmoke;
border-radius: 40px 0px 40px 40px;
box-shadow: 2px 2px 2px aquamarine;
}
#ui{
position: absolute;
right: 0;
border-radius: 50%;
filter: drop-shadow(3px 3px 4px rgb(193, 187, 187));
}
#ai{
position: absolute;
left:0;
filter: drop-shadow(3px 3px 4px brown);
}
.promptarea{
width: 100%;
height: 20%;
background-color:whitesmoke;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.promptarea input{
height: 80px;
width: 40%;
font-size: 24px;
background-color:black;
outline: none;
border: none;
border-radius: 40px;
padding: 20px;
color: whitesmoke;
box-shadow: 2px 2px 10px black;
}
.promptarea button{
width: 70px;
aspect-ratio: 1;
border-radius: 50%;
box-shadow: 2px 2px 10px whitesmoke;
transition: all 0.5s;
}
.promptarea button:hover{
background-color: wheat;
}
.load{
filter: drop-shadow(3px 3px 4px brown);
height:30px;
aspect-ratio: 1;
border-radius: 50%;
}