-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.py
More file actions
53 lines (53 loc) · 1.07 KB
/
Copy pathstyles.py
File metadata and controls
53 lines (53 loc) · 1.07 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
styles = """
<style>
body {
display: flex;
flex-direction: row;
gap: 20px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(10, 30px);
grid-template-rows: repeat(10, 30px);
gap: 2px;
margin-bottom: 20px;
}
.grid-item {
width: 30px;
height: 30px;
border: 1px solid black;
display: flex;
align-items: center;
justify-content: center;
}
.agent {
background-color: blue;
}
.treasure {
background-color: red;
}
.chat-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.message-bubble {
border-radius: 10px;
padding: 10px;
max-width: 70%;
word-wrap: break-word;
}
.agent1 {
background-color: #DCF8C6;
align-self: flex-start;
}
.agent2 {
background-color: #FFD1D1;
align-self: flex-end;
}
.agent-name {
font-weight: bold;
margin-bottom: 5px;
}
</style>
"""