added a bit to the website files and made a little bit of a theme

This commit is contained in:
TechRunner2
2018-04-08 02:07:17 -05:00
parent 5dbeeddba1
commit 8733e29ed6
5 changed files with 80 additions and 0 deletions

57
style.css Normal file
View File

@ -0,0 +1,57 @@
body{
margin: 0;
padding: 0;
background-color:rgb(86, 105, 110);
font-family: sans;
}
/* Header Bar */
#logo{
float:left;
color: red;
margin: inherit;
margin-top: 5px;
text-shadow: 1px 1px white, -1px -1px white, -1px 1px white, 1px -1px white;
}
#title{
color: red;
text-shadow: 1px 1px white, -1px -1px white, -1px 1px white, 1px -1px white;
text-align: center;
margin: 0;
margin-top: 15px;
}
.nav li{
display: inline;
margin: .3em;
}
.nav ul{
background-color: black;
}
.nav a{
color: white;
font-size: 30px;
border-bottom: dotted 2px white;
text-decoration: none;
}
.nav a:hover{
color: red;
}
.nav{
margin: 0;
background-color: black;
height: 50px;
text-align: right;
padding-right: 2em;
padding-top: 5px;
border-bottom: solid red 4px;
}
/* Content */
.content{
margin: 1em;
background-color: white;
height: 100%;
}