Sergidev commited on
Commit
5124367
·
verified ·
1 Parent(s): 23daa6d

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +30 -0
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
  }