mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
34 lines
484 B
CSS
34 lines
484 B
CSS
/* Horizontal delimiter defaults */
|
|
hr {
|
|
border: 0px;
|
|
color: black;
|
|
background-color: black;
|
|
height: 1px;
|
|
}
|
|
|
|
/* Clear floating objects */
|
|
hr.topdivider {
|
|
clear: both;
|
|
}
|
|
|
|
/* Natural white background color */
|
|
body, html {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
/* Link colors for all links */
|
|
a, a:visited {
|
|
color: #000099;
|
|
background-color: transparent;
|
|
}
|
|
a:active {
|
|
color: #0000ff;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* Drop border around images */
|
|
img {
|
|
border: 0px;
|
|
}
|