31 lines
679 B
CSS
31 lines
679 B
CSS
body {
|
|
background-color: #3B5998;
|
|
color: white;
|
|
}
|
|
.button a {
|
|
/* font: bold 11px Arial;*/
|
|
text-decoration: none;
|
|
background-color: #EEEEEE;
|
|
color: #333333;
|
|
padding: 2px 6px 2px 6px;
|
|
border-top: 1px solid #CCCCCC;
|
|
border-right: 1px solid #333333;
|
|
border-bottom: 1px solid #333333;
|
|
border-left: 1px solid #CCCCCC;
|
|
}
|
|
.topNavBar {
|
|
background-color: rgb(236, 236, 236);
|
|
overflow: hidden;
|
|
}
|
|
.topNavBar a {
|
|
float: left;
|
|
color: #363636;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
}
|
|
.topNavBar a:hover {
|
|
background-color: rgb(44, 48, 255);
|
|
color: rgb(255, 255, 255);
|
|
} |