Add site-wide css rules file

Put only things that are sitewide and should not go in a separate
stylesheet (such as large special purpose chunks like navbar css)
here.
This commit is contained in:
Simon Glisic Randby 2015-09-13 22:54:03 +02:00
parent 84cac661ed
commit fd2bfadc7d
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
font-family: Georgia, serif;
}
body{
/*background-color: #0ce8dc;*/
background-color: white;
text-align: center;
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
/*Unvisited style:*/
a:link{
color: #0c80e8;
}
/*Visited Style*/
a:visited{
color: #0c80e8;
}
a:active{
}
a:hover{
color: #0d4dff;
}
body p{
display: inline-block;
font-size: 1.3em;
max-width:40em;
}