-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (75 loc) · 1.12 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
body{
background-color: white;
font-family: "Arial";
}
a{
color: #3c1d99;
}
/*#0c101c*/
#logo{
width: 490px;
}
#container{
background-color: red;
width: 500px;
height: 500px;
position: relative;
border: 2px solid black;
}
#textbox_div{
background-color: #f54997;
height: 40px;
width: 490px;
position: absolute;
bottom: 0;
text-align: center;
padding: 5px;
}
.textbox_div__input{
width: 70%;
height: 100%;
font-size: 20px;
}
.textbox_div__button{
width: 20%;
height: 100%;
font-size: 20px;
}
#messages_div{
background-color: white;
height: 440px;
width: 490px;
position: absolute;
bottom: 0px;
margin-bottom: 50px;
overflow: scroll;
padding: 5px;
}
.messages_div__message{
display: block;
padding: 10px;
border-radius: 15px;
margin: 5px;
height: auto;
}
.messages_div__message.bot{
background-color: #f54997;
float: left;
max-width: 70%;
}
.bot_img{
float: left;
height: 60px;
}
.messages_div__message.user{
background-color: pink;
float: right;
}
.message_wrapper{
clear: both;
}
.programme-image{
width: 200px;
display: flex;
margin-top: 5px;
}