- From: Daniel Veillard <Daniel.Veillard@imag.fr>
- Date: Wed, 28 Aug 1996 21:08:40 +0200
- To: nelson@crynwr.com
- Cc: www-amaya@w3.org
>I have a 17" 1280x1024 screen. The base fontsize is a *wee bit* too >tiny for my eyes to read. Any way to expand it? I can't see any. Use the power of CSS. Create a $(HOME)/.amaya.css containing a magnification command applied to BODY: e.g: BODY { magnification : 1 } As an example here is my .amaya.css file, doing justification of paragraphs and a slight magnification: ----------------------------------------------- /* * CSS 1.0 Style Sheet produced by Amaya * * User's Preferences * * URL : /users/veillard/.amaya.css * Last updated 06/25/96 17:10:50 by veillard on praslin */ BLOCKQUOTE P { text-indent : 0pt; line-height : 16pt; text-align: justify } LI P { text-indent : 0pt; line-height : 16pt; text-align: justify } P { text-indent : 15pt; line-height : 16pt; text-align: justify } UL P { text-indent : 0pt; line-height : 16pt; text-align: justify } DD P { text-indent : 0pt; line-height : 16pt; text-align: justify } BODY { magnification : 1 } /* CSS end */ ----------------------------------------------- Note however that magnification implementation is not perfect, it does not do proportionnal scaling of each elements. Daniel
Received on Wednesday, 28 August 1996 21:09:09 UTC