Changes
- Added 'curl' and 'wget' commands. TODO: Add feedback when user clicks on them to copy (probably need a not bajillion years outdated Inkscape with icons that aren't completely broken first though :/) - Fixed some light theme issues - Fixed some sizing issues on mobile - Download button actually works now
This commit is contained in:
parent
2eac439ba1
commit
dfcb95bd0d
9 changed files with 204 additions and 32 deletions
21
src/app/[...file]/download_tty.css.ts
Normal file
21
src/app/[...file]/download_tty.css.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { style } from '@vanilla-extract/css';
|
||||
|
||||
import * as colors from '../colors.css';
|
||||
|
||||
export const download_tty = style({
|
||||
display: 'block',
|
||||
margin: 0,
|
||||
border: 'none',
|
||||
padding: '0',
|
||||
outline: 'inherit',
|
||||
fontFamily: 'monospace',
|
||||
fontSize: '1.1em',
|
||||
lineHeight: '2em',
|
||||
background: 'none',
|
||||
color: 'inherit',
|
||||
transition: 'color 0.15s',
|
||||
whiteSpace: 'pre-wrap',
|
||||
':hover': {
|
||||
color: colors.accent,
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue