Added mostly themeing

This commit is contained in:
TechRunner2
2018-04-09 11:56:30 -05:00
parent 8733e29ed6
commit 561acc0a1f
5 changed files with 172 additions and 4 deletions

View File

@ -1,6 +1,7 @@
body{
html, body{
margin: 0;
padding: 0;
height: 100%;
background-color:rgb(86, 105, 110);
font-family: sans;
}
@ -53,5 +54,66 @@ body{
.content{
margin: 1em;
background-color: white;
border: solid black;
margin-right: 14em;
}
/* Catagories */
.catagories{
float: right;
width: 12em;
height: 5em;
background-color: white;
margin: 1em;
border: solid black;
padding-bottom: 2em;
}
.catagories a{
text-decoration: none;
height: 95%;
color: black;
border-bottom: dashed black 1px;;
}
.catagories a:hover{
border-bottom: solid red 1px;
}
.catagories li{
}
.catagories ul{
list-style-type: none;
}
.titles{
color: red;
text-shadow: 1px 1px black, -1px -1px black, -1px 1px black, 1px -1px black;
text-align: center;
}
.text{
margin: 1em;
padding: 1em;
background-color: midnightblue;
color: white;
}
.footer{
background-color: black;
border-top: solid red;
display: fixed;
bottom: 0;
color: grey;
font-size: 10px;
margin: 0;
}
.footer p,a{
margin: 0;
padding: 5px;
}
.wraper{
min-height: 100%;
height: 100%;
}