Spaces:
Running
on
Zero
Running
on
Zero
Update style.css
Browse files
style.css
CHANGED
@@ -31,4 +31,34 @@ h1 {
|
|
31 |
|
32 |
#subtitle {
|
33 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
|
|
31 |
|
32 |
#subtitle {
|
33 |
text-align: center;
|
34 |
+
}
|
35 |
+
|
36 |
+
.history-container {
|
37 |
+
max-height: 600px;
|
38 |
+
overflow-y: auto;
|
39 |
+
border: 1px solid #ccc;
|
40 |
+
padding: 10px;
|
41 |
+
}
|
42 |
+
|
43 |
+
.history-item {
|
44 |
+
display: flex;
|
45 |
+
margin-bottom: 20px;
|
46 |
+
border-bottom: 1px solid #eee;
|
47 |
+
padding-bottom: 10px;
|
48 |
+
}
|
49 |
+
|
50 |
+
.history-item img {
|
51 |
+
width: 128px;
|
52 |
+
height: 128px;
|
53 |
+
object-fit: cover;
|
54 |
+
margin-right: 10px;
|
55 |
+
}
|
56 |
+
|
57 |
+
.history-info {
|
58 |
+
flex: 1;
|
59 |
+
}
|
60 |
+
|
61 |
+
.history-info p {
|
62 |
+
margin: 5px 0;
|
63 |
+
font-size: 14px;
|
64 |
}
|