28 lines
504 B
CSS
28 lines
504 B
CSS
table {
|
|
width: 100%;
|
|
font-family: ui-monospace, "Segoe UI Mono", "Source Code Pro", monospace;
|
|
}
|
|
|
|
table td:nth-child(1), table th:nth-child(1) {
|
|
text-align: left;
|
|
}
|
|
|
|
table td:nth-child(2), table th:nth-child(2),
|
|
table td:nth-child(3), table th:nth-child(3) {
|
|
width: auto;
|
|
text-align: right;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
table td:nth-child(3), table th:nth-child(3) {
|
|
width: 15%;
|
|
}
|
|
|
|
.git {
|
|
padding: 1em;
|
|
border: solid #41ead4 2px;
|
|
border-radius: 4px;
|
|
background: #41ead422;
|
|
margin-bottom: 1em;
|
|
}
|
|
|