I have inherited some code that has the CSS mentioned below. I like the grid effect of the table, but was curious as to how to change the values so that the black edge of the table has a grey color... I have never encountered the delcaration windowtext Thanks to a another thread on this forum I found the following:
I changed the declaration from windowtext to menu and I got the gray color I was interested in - . I also putzed around with the body, td styles to change the color, font and size of the text.
However, I want to learn more about these declarations "window" ane "windowtext" and how I can (if I can modify them to get a maroon color instead of gray, etc.
Links to other useful resources on the web would also be appreciated.
TIA!
I am including the whole stylesheet so I do not leave anything out.
<style type="text/css">
<!--
body, td {
background: window;
color: windowtext;
font: icon;
}
table {
background: windowframe;
}
select {
background: window;
color: windowtext;
font: icon;
}
input {
background: buttonface;
color: buttontext;
font: icon;
}
small {
color: graytext;
}
A:link { color: #B30000;
text-decoration : none;
}
A:visited { color: #1D1E80;
text-decoration : none;
}
A:hover { color: #B30000;
text-decoration : none;
}
-->
I changed the declaration from windowtext to menu and I got the gray color I was interested in - . I also putzed around with the body, td styles to change the color, font and size of the text.
However, I want to learn more about these declarations "window" ane "windowtext" and how I can (if I can modify them to get a maroon color instead of gray, etc.
Links to other useful resources on the web would also be appreciated.
TIA!
I am including the whole stylesheet so I do not leave anything out.
<style type="text/css">
<!--
body, td {
background: window;
color: windowtext;
font: icon;
}
table {
background: windowframe;
}
select {
background: window;
color: windowtext;
font: icon;
}
input {
background: buttonface;
color: buttontext;
font: icon;
}
small {
color: graytext;
}
A:link { color: #B30000;
text-decoration : none;
}
A:visited { color: #1D1E80;
text-decoration : none;
}
A:hover { color: #B30000;
text-decoration : none;
}
-->