-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.css
82 lines (68 loc) · 1.21 KB
/
article.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
height: 100%;
font-family: "Inter", sans-serif;
background-color: rgb(248, 248, 248);
}
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #ffffff;
border-radius: 20px;
box-shadow: inset 0 0 10px 10px #888;
border: solid 3px transparent;
}
::-webkit-scrollbar-thumb:hover {
background: #ffffff;
border-radius: 20px;
box-shadow: inset 0 0 10px 10px #555;
border: solid 3px transparent;
}
.banner {
width: 100%;
height: 550px;
object-fit: cover;
}
.copyright {
text-align: center;
bottom: 3px;
font-size: 14px;
}
.article {
width: 80%;
margin: 0 auto;
}
a, a:visited, a:hover, a:active {
text-decoration: none;
color: #0645AD;
}
.content_table {
width: 30%;
background-color: #e7e7e7;
padding: 2px;
outline: 1px solid rgb(160, 160, 160);
}
table {
border-collapse: collapse;
margin-bottom: 24px;
}
th,
td {
text-align: left;
padding: 12px;
border: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
.animate {
opacity: 1;
transition: opacity 0.5s linear;
}
img {
opacity: 0
}