motto/src/app/[...file]/components/copy.css.ts

22 lines
432 B
TypeScript
Raw Normal View History

import { style } from '@vanilla-extract/css';
2024-09-19 05:34:28 +01:00
import * as colors from '../../colors.css';
export const copy = 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,
},
});