-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (84 loc) · 1.4 KB
/
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
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
93
94
95
96
97
98
99
100
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
.root,
html,
body {
width: 100vw;
min-height: 100vh;
}
ul {
list-style: none;
}
.root {
display: flex;
}
.root .left {
flex: 1;
display: flex;
flex-direction: column;
padding: 32px 8px;
border: 1px solid #00000044;
gap: 16px;
}
.root .left .title {
font-size: 18pt;
}
.root .left .topics {
display: flex;
flex-direction: column;
gap: 8px;
}
.root .left .topics .link a {
font-size: 12pt;
color: #000;
}
.root .main {
flex: 4;
padding: 32px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.root .main .content {
display: flex;
flex-direction: column;
}
.root .main .content {
display: flex;
flex-direction: column;
gap: 12px;
}
.root .main .content .item {
flex: 1;
display: flex;
flex-direction: column;
gap: 12px;
}
.root .main .content .item img {
max-width: 800px;
height: auto;
}
.root .main .content .item .table {
width: 60%;
}
.root .main .content .item .table th {
border: 1px solid #00000044;
padding: 8px;
}
.root .main .content .item .table td {
border: 1px solid #00000044;
padding: 8px;
}
.root .main .footer {
margin-top: 100px;
color: #000000aa;
}
.item.dark img {
background: black;
width: 500px;
}