File size: 4,389 Bytes
e410480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f21a4f1
e410480
 
 
 
 
 
f21a4f1
e410480
 
 
 
 
 
 
 
 
 
f21a4f1
e410480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f21a4f1
 
 
 
 
 
 
 
 
 
 
e410480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f21a4f1
e410480
 
 
f21a4f1
 
 
e410480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f21a4f1
e410480
 
 
 
 
 
 
 
 
 
f21a4f1
 
e410480
 
 
 
 
f21a4f1
e410480
 
 
f21a4f1
e410480
 
 
 
 
 
 
 
 
f21a4f1
e410480
 
 
 
 
 
 
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
css = '''
<style>
.chat-message {
    padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 1rem; display: flex
}
.chat-message.user {
    background-color: #2b313e
}
.chat-message.bot {
    background-color: #475063
}
.chat-message .avatar {
  width: 20%;
}
.chat-message .avatar img {
  max-width: 78px;
  max-height: 78px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-message .message {
  width: 80%;
  padding: 0 1.5rem;
  color: #fff;
}


.main {
    padding: 2rem;
}

.skill {
    background-color: rgb(0, 0, 0);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.5);
    transition: .3s;
}

.skill:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.skill-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.skill-img-box {
  position: relative;
  min-width: 140px;
  height: 140px;
  margin-right: 2rem;
  border-radius: 1rem;
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir completamente el contenedor */
  background-position: center; /* Centra la imagen en el contenedor */
}

.skill-img-box img {
  width: 100%; /* Asegura que la imagen ocupe todo el espacio disponible en el contenedor */
  height: 100%;
  border-radius: 1rem;
  object-fit: cover; /* Ajusta el tamaño de la imagen manteniendo la proporción */
}

.skill-detail {
    width: 100%;
}

.skill-progress {
    position: relative;
    height: 1rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    overflow: hidden;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffffc7;
    transition: width 1s ease; /* Transición de la anchura durante 1 segundo con efecto de suavizado */
}

.progress-1 {
    width: 0%;
}

/* Pseudo-clase hover para demostrar la animación */
.skill-progress:hover .progress-1 {
    width: 100%;
}


.chat-row {
    display: flex;
    margin: 5px;
    width: 100%;
}

.row-reverse {
    flex-direction: row-reverse;
}

.chat-box {
  max-width: 400px;
  margin: 20px auto;
  background-color: #8a8787;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.chat-bubble {
    font-family: "Source Sans Pro", sans-serif, "Segoe UI", "Roboto", sans-serif;
    border: 1px solid transparent;
    padding: 5px 10px;
    margin: 0px 7px;
    max-width: 70%;
}

.ai-bubble {
    background: rgb(153, 153, 153);
    border-radius: 10px;
}

.human-bubble {
    background: linear-gradient(135deg, rgb(0, 178, 255) 0%, rgb(0, 106, 255) 100%); 
    color: white;
    border-radius: 10px;
}

.chat-icon {
    width: 50px; /* Ajusta el ancho según tus necesidades */
    height: 50px; /* Ajusta la altura según tus necesidades */
    border-radius: 50px;
}

.container-neon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Ajusta la altura según tus necesidades o utiliza otro método para centrar verticalmente */
}

.btn-neon {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 48px;
    overflow: hidden;
    border-radius: 15px;
    # background: #a945c7;
    # box-shadow: 0 0 10px #a945c7, 0 0 40px #a945c7, 0 0 80px #a945c7;
    transition: 0.2s;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.8);
}

.icon img {
    margin-right: 1px; /* Ajusta el espacio entre la imagen y el texto según tus necesidades */
    width: 50px; /* Ajusta el ancho de la imagen según tus necesidades */
    height: 50px; /* Ajusta la altura de la imagen según tus necesidades */
}


'''


bot_template2 = '''

<div class="chat-row">
    <img class="chat-icon" src="https://github.com/manolito99/DataScienceLLM/blob/main/static/bot.png?raw=true" width=45 height=45>
    <div class="chat-bubble ai-bubble">
        &#8203;{{MSG}}
    </div>
</div>

'''
user_template2 = '''

<div class="chat-row row-reverse">
    <img class="chat-icon" src="https://github.com/manolito99/DataScienceLLM/blob/main/static/user.png?raw=true" width=45 height=45>
    <div class="chat-bubble human-bubble">
        &#8203;{{MSG}}
    </div>
</div>

'''