13 lines
352 B
CSS
13 lines
352 B
CSS
a:link { text-decoration: none; color: #104e8b; }
|
|
a:visited { text-decoration: none; color: #104e8b; }
|
|
a:active { text-decoration: none; color: #104e8b; }
|
|
a:hover { text-decoration: underline; color: #104e8b; }
|
|
|
|
.navbar {
|
|
background-color: #f3f2ea;
|
|
padding: 5px;
|
|
border: 1px solid #ccc;
|
|
font: 9pt sans-serif;
|
|
margin-bottom: 10px;
|
|
}
|