sidbhasin commited on
Commit
f41050c
1 Parent(s): d2f3c87

Create app.css

Browse files
Files changed (1) hide show
  1. app.css +57 -0
app.css ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .left_header {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+ align-items: center;
6
+ }
7
+
8
+ .right_panel {
9
+ margin-top: 66px;
10
+ border: 1px solid #BFBFC4;
11
+ border-radius: 8px;
12
+ overflow: hidden;;
13
+ }
14
+
15
+ .render_header {
16
+ height: 30px;
17
+ width: 100%;
18
+ padding: 5px 16px;
19
+ background-color: #f5f5f5;
20
+ }
21
+
22
+ .header_btn {
23
+ display: inline-block;
24
+ height: 10px;
25
+ width: 10px;
26
+ border-radius: 50%;
27
+ margin-right: 4px;
28
+ }
29
+
30
+ .render_header > .header_btn:nth-child(1) {
31
+ background-color: #f5222d;
32
+ }
33
+
34
+ .render_header > .header_btn:nth-child(2) {
35
+ background-color: #faad14;
36
+ }
37
+ .render_header > .header_btn:nth-child(3) {
38
+ background-color: #52c41a;
39
+ }
40
+
41
+ .right_content {
42
+ height: 920px;
43
+ display: flex;
44
+ flex-direction: column;
45
+ justify-content: center;
46
+ align-items: center;
47
+ }
48
+
49
+ .history_chatbot button {
50
+ background: none;
51
+ border: none;
52
+ }
53
+
54
+ .html_content {
55
+ width: 100%;
56
+ height: 920px;
57
+ }