Spaces:
Running
Running
Upload 3 files
Browse files- resources/aiRobot1.png +0 -0
- resources/aiRobot2.png +0 -0
- static/app.css +64 -0
resources/aiRobot1.png
ADDED
![]() |
resources/aiRobot2.png
ADDED
![]() |
static/app.css
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html ,body{
|
2 |
+
height: 100%;
|
3 |
+
width: 100%;
|
4 |
+
box-sizing: border-box;
|
5 |
+
background-color: white;
|
6 |
+
}
|
7 |
+
|
8 |
+
body{
|
9 |
+
gap: 20px;
|
10 |
+
}
|
11 |
+
header{
|
12 |
+
width: 100%;
|
13 |
+
height: 10%;
|
14 |
+
display: flex;
|
15 |
+
justify-content: flex-start;
|
16 |
+
gap : 20px ;
|
17 |
+
align-items: center;
|
18 |
+
}
|
19 |
+
|
20 |
+
header img {
|
21 |
+
height: 15vh;
|
22 |
+
width: 5vw;
|
23 |
+
object-fit:cover;
|
24 |
+
}
|
25 |
+
|
26 |
+
header span{
|
27 |
+
font-size: 30px;
|
28 |
+
}
|
29 |
+
|
30 |
+
em{
|
31 |
+
color:rgb(42, 42, 248);
|
32 |
+
}
|
33 |
+
|
34 |
+
.convo{
|
35 |
+
height: 75%;
|
36 |
+
width: 100%;
|
37 |
+
|
38 |
+
}
|
39 |
+
.qt{
|
40 |
+
height: 10%;
|
41 |
+
width: 100%;
|
42 |
+
display: flex;
|
43 |
+
justify-content: center;
|
44 |
+
align-items: center;
|
45 |
+
background-color: white;
|
46 |
+
gap: 2%;
|
47 |
+
}
|
48 |
+
|
49 |
+
.qt{
|
50 |
+
width: 100%;
|
51 |
+
height: 100%;
|
52 |
+
border: none;
|
53 |
+
background-color: rgb(103, 103, 246);
|
54 |
+
display: flex;
|
55 |
+
|
56 |
+
}
|
57 |
+
|
58 |
+
.qt i{
|
59 |
+
cursor: pointer;
|
60 |
+
}
|
61 |
+
|
62 |
+
.qtdoc{
|
63 |
+
|
64 |
+
}
|