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:
parent
84cac661ed
commit
fd2bfadc7d
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue