View Single Post
Old 02-25-2021, 12:31 PM   #122
Ashjuk
Fanatic
Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.Ashjuk ought to be getting tired of karma fortunes by now.
 
Ashjuk's Avatar
 
Posts: 500
Karma: 3498633
Join Date: May 2011
Location: Surrey, UK
Device: Kobo Aura One, Sony PRS 600/650
Following from my post about the menuitem class I have made some changes to the css code to achieve a greater degree of contrast.

Three suggestions for everyone to have a look at. Please feel free to comment and criticise.

In all cases I have increased the font size from 0.9em to 1em.

1: Bold text:
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
}
https://www.mobileread.com/forums/at...1&d=1614273962

2: Bold black text on light grey background.
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
background-color:lightgray;
}
https://www.mobileread.com/forums/at...1&d=1614273962

3: Bold white text on black background:
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
color: white;
background-color: black;
}
https://www.mobileread.com/forums/at...1&d=1614273962
Attached Thumbnails
Click image for larger version

Name:	menuitem 1.jpg
Views:	205
Size:	17.8 KB
ID:	185606   Click image for larger version

Name:	menuitem 2.jpg
Views:	190
Size:	18.2 KB
ID:	185607   Click image for larger version

Name:	menuitem 3.jpg
Views:	174
Size:	19.3 KB
ID:	185608  
Ashjuk is offline   Reply With Quote