File size: 1,814 Bytes
4e0cc3e 7295e07 4e0cc3e 7295e07 4e0cc3e 7295e07 | 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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | body {
padding: 2rem;
font-family: Arial;
}
h1 {
font-size: 16px;
margin-top: 0;
}
p {
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
table {
width: 100%;
table-layout: fixed;
border-collapse: separate;
margin-bottom: 40px;
color: rgb(54, 54, 54);
}
th:nth-child(1), td:nth-child(1) {
width: 30%;
word-break: break-all;
}
th:nth-child(2), td:nth-child(2) {
width: 20%;
}
th:nth-child(3), td:nth-child(3) {
width: 10%;
}
th:nth-child(4), td:nth-child(4) {
width: 40%;
}
caption {
font-weight: bold;
text-align: left;
padding-bottom: 10px;
}
th {
font-weight: bold;
text-align: left;
padding: 8px;
}
td {
text-align: left;
padding: 8px;
}
td audio {
display: block;
min-width: 200px;
}
.center-header {
color: rgb(54, 54, 54);
text-align: center;
margin-bottom: 2rem;
}
.card h3 {
font-size: 2rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.5rem;
}
.card {
margin: 0 auto;
padding: 16px;
border-radius: 16px;
}
.card p:last-child {
margin-bottom: 0;
}
.github-icon {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: #444;
font-weight: 500;
margin-bottom: 8px;
}
.resource-link {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: #444;
font-weight: 500;
margin-bottom: 8px;
}
.author-list a {
color: rgb(32, 156, 238);
text-decoration: none;
transition: color 0.2s;
}
.affiliations {
font-size: 14px;
color: #666;
margin-top: 10px;
}
.citation-container {
font-size: 14px;
color: rgb(54, 54, 54);
margin-top: 10px;
}
.mid-section {
font-size: 14px;
color: rgb(54, 54, 54);
margin-top: 10px;
}
|