style.css
1.04 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
.hkic_details .toggle-list {
cursor: pointer;
}
.hkic_details .toggle-list::after {
content: '';
padding-left: 44px;
background: url('/content/dam/hkic/event-highlights/2023/0118/arrow-up.png') right center no-repeat;
background-size: 24px;
}
.hkic_details .toggle-list.closed::after {
background: url('/content/dam/hkic/event-highlights/2023/0118/arrow-down.png') right center no-repeat;
background-size: 24px;
}
.hkic_details .toggle-content {
padding: 20px;
border: 1px solid #efefef;
border-top: 3px solid #0ab1f0;
margin-top: 18px;
}
.hkic_details .toggle-content table {
border: none;
width: 100%;
border-spacing: 15px;
border-collapse: separate;
}
.hkic_details .toggle-content table td {
padding: 30px;
border-width: 5px 1px 1px;
border-style: solid;
border-color: rgb(0, 204, 255) rgb(200, 200, 200) rgb(200, 200, 200);
width: 49%;
}
.hkic_details .toggle-content table td span {
font-size: 18px;
}
@media screen and (max-width: 767px) {
.hkic_details .toggle-content table td {
padding: 15px;
}
}