-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
61 lines (51 loc) · 938 Bytes
/
styles.css
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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #333;
}
/* Table Styles */
.table-responsive {
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table th, table td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
table th {
background-color: #4CAF50;
color: white;
}
/* Image Styles */
.publisher-image {
max-width: 100px;
height: auto;
}
/* Responsive Styles */
@media (max-width: 768px) {
table {
font-size: 14px;
}
.publisher-image {
max-width: 80px;
}
}