You've already forked documentation
mirror of
https://github.com/armbian/documentation.git
synced 2026-01-06 10:13:36 -08:00
25 lines
505 B
CSS
25 lines
505 B
CSS
.md-typeset__table {
|
|
min-width: 100%;
|
|
}
|
|
|
|
.md-typeset table:not([class]) {
|
|
display: table;
|
|
}
|
|
|
|
/* Style for only specially tagged bash blocks */
|
|
pre.custom-bash-block, code.custom-bash-block {
|
|
font-size: 24pt;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
pre.custom-bash-block, code.custom-bash-block {
|
|
font-size: 14pt; /* smaller size for tablets/phones */
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
pre.custom-bash-block, code.custom-bash-block {
|
|
font-size: 12pt; /* even smaller for small phones */
|
|
}
|
|
}
|