-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (77 loc) · 1.3 KB
/
style.css
File metadata and controls
92 lines (77 loc) · 1.3 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
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
body {
font-family: Arial, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 15px;
}
.container {
max-width: 900px;
margin: auto;
font-size: 15px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
/* Accordion Style */
.accordion {
background: white;
margin-bottom: 10px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.accordion-header {
padding: 15px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
background: #2563eb;
color: white;
font-weight: bold;
}
.arrow {
transition: 0.3s;
}
.rotate {
transform: rotate(180deg);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.accordion-content.active {
max-height: 500px;
}
/* Table */
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 10px;
text-align: center;
font-size: 14px;
}
thead {
background: #e2e8f0;
}
tbody tr:nth-child(even) {
background: #f8fafc;
}
.credit {
text-align: center;
margin-top: 30px;
padding: 15px;
font-size: 13px;
color: #64748b;
}
/* Mobile */
@media (max-width: 600px) {
th, td {
font-size: 12px;
padding: 6px;
}
}