pyx/user_styles.py
2025-08-21 13:39:30 -04:00

16 lines
275 B
Python

from css import SHEET, CSS, Font, PX
class UserMadeSheet(SHEET):
Paragraph=CSS[
Font( size=PX(10) ),
](512)[
Font( size=PX(18), family="sans" ),
](1024)[
Font( size=PX(120) ),
]
Anchor=CSS[
Font( size=PX(123) )
]