Files
WMU-CS4430-Project/var/www/styling.css
2019-12-03 23:53:43 -05:00

39 lines
786 B
CSS

body {
background-color: #3B5998;
color: white;
font-family: Arial, sans-serif;
}
input {
padding: 3px;
margin: 2px;
}
.button {
font-weight: bold;
font-size: 16px;
text-align: center;
text-decoration: none;
background-color: #FAFAFA;
color: #333333;
padding: 4px 12px 4px 12px;
border-radius: 5px;
border-top: 2px solid #CCCCCC;
border-right: 3px solid #333333;
border-bottom: 2px solid #333333;
border-left: 3px solid #CCCCCC;
}
.topNavBar {
background-color:#FAFAFA;
overflow: hidden;
}
.topNavBar a {
float: left;
color: #333333;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topNavBar a:hover {
background-color: #88BBFF;
color: #FFF;
}