27 lines
441 B
CSS
27 lines
441 B
CSS
body {
|
|
--color: #000;
|
|
--background-color: #fff;
|
|
|
|
font-family: Tahoma, sans-serif;
|
|
color: var(--color);
|
|
font-weight: 100;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
a, a:visited, a:active {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #fff;
|
|
text-decoration: underline overline;
|
|
cursor: crosshair;
|
|
}
|
|
|
|
header {
|
|
height: 90px;
|
|
background-color: #7ac5cd;
|
|
padding: 0 10px 10px;
|
|
text-align: center;
|
|
}
|