Overview
Comment: | [fx] add @font-face to main panel CSS |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
b42ba4d76e3295d6aadbf987ff410e3e |
User & Date: | olr on 2017-11-25 14:14:48 |
Other Links: | manifest | tags |
Context
2017-11-25
| ||
14:51 | [fx] add font Yanone Kaffeesatz check-in: edae0de03d user: olr tags: trunk, fx | |
14:14 | [fx] add @font-face to main panel CSS check-in: b42ba4d76e user: olr tags: trunk, fx | |
13:33 | [fr] simplification d’une condition check-in: bb4726b7d8 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/panel/main.css from [f3d95db8cd] to [ac4736311d].
1 2 3 4 5 6 7 8 9 10 11 12 | /* flexbox: https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */ /* reset */ * { margin: 0; padding: 0; } img { border: none; } | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /* flexbox: https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */ @font-face { font-family: "Yanone Kaffeesatz"; font-weight: normal; src: url(../fonts/YanoneKaffeesatz-Regular.otf) format("opentype"); } @font-face { font-family: "Yanone Kaffeesatz"; font-weight: bold; src: url(../fonts/YanoneKaffeesatz-Bold.otf) format("opentype"); } /* reset */ * { margin: 0; padding: 0; } img { border: none; } |
︙ | ︙ |