File size: 1,431 Bytes
a5d15a1
5838d31
 
 
5e9d550
7e1bcb2
04e6cb7
88a5261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e30ab66
686cc9e
983fa94
375ea69
467a305
686cc9e
 
 
 
178e2a5
686cc9e
12311b6
d12220b
41c6607
12311b6
 
 
8e88f1b
178e2a5
 
375ea69
178e2a5
3881a79
7137cdd
3881a79
 
7137cdd
a6ee94b
 
 
 
 
 
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
#col-container {
  max-width: 700px;
  margin-left: auto; 
  margin-right: auto;
  /*height:100vh;*/
 /*overflow-anchor: none;*/
}
a {text-decoration-line: underline; font-weight: 600;}
.footer {
        margin-bottom: 45px;
        margin-top: 10px;
        text-align: center;
        border-bottom: 1px solid #e5e5e5;
    }
    .footer>p {
        font-size: .8rem;
        display: inline-block;
        padding: 0 10px;
        transform: translateY(10px);
        background: white;
    }
    .dark .footer {
        border-color: #303030;
    }
    .dark .footer>p {
        background: #0b0f19;
    }
.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*#input_prompt {*/
    /*position: fixed;*/
    /*bottom: 0;*/
    /*width: 680px;*/
    /*background-color: white;
    /*color: black;
    /*padding: 10px;
    /*font-size: 16px;
    /*overflow-anchor: auto;  */
/*}*/
#chatbot-component {
  /*overflow-anchor: none;*/
  overflow: auto;
  display: flex;
  flex-direction: column-reverse;
}
#upload_button {
  /*overflow-anchor: auto;*/  
  /*height: 5 px;*/
  background-color: black;
  color: white;
}
/*#dummy_elem {
  overflow-anchor: auto;
  height: 1px;
}*/
#help_text {
  display: none; /* initially hidden */
}
#help_text:target {
  display: block; /* show when the link is clicked */
}