-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (107 loc) · 1.75 KB
/
style.css
File metadata and controls
109 lines (107 loc) · 1.75 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
body {
background-color: #333;
}
.nav {
padding: 20px;
display: flex;
gap: 10px;
background-color: #000000;
color: rgb(255, 255, 255);
border-bottom: 2px solid white;
justify-content: space-between;
align-items: center;
}
.container {
margin: 50px auto;
padding: 30px;
display: flex;
gap: 20px;
flex-direction: column;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
position: relative;
}
.inner-container {
text-align: center;
margin-bottom: 20px;
}
.my-img {
border-radius: 50%;
height: 200px;
}
.response {
margin-top: 20px;
padding: 20px;
background-color: #e9ecef;
border-radius: 10px;
white-space: pre-line;
}
#inside-text {
color: red;
font-weight: bolder;
}
.logo {
height: 50px;
}
.warning {
color: red;
font-weight: bolder;
}
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
}
footer{
display: flex;
align-items: center;
flex-direction: column;
background-color: #000000;
padding: 20px;
color: aqua;
}
a{
text-decoration: none;
color: aqua;
}
.conversation {
margin-bottom: 20px;
}
.question, .answer {
display: flex;
align-items: center;
margin: 10px 0;
}
.question {
justify-content: flex-end;
}
.answer {
justify-content: flex-start;
}
.bubble {
padding: 10px 20px;
border-radius: 20px;
}
.question .bubble {
background-color: #e6e6e6;
margin: 10px;
}
.answer .bubble {
background-color: #007bff;
color: white;
margin: 10px;
padding: 10px;
}
.container {
margin-top: 20px;
}
.form-control {
width: 50%;
}
.logo{
display: flex;
gap: 10px;
}