mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
Fix RSS link, add hover to top links
This commit is contained in:
parent
2184f34435
commit
1d51cc6095
2 changed files with 12 additions and 5 deletions
|
@ -14,7 +14,10 @@
|
|||
<ul id="menu">
|
||||
<li><a href="/about/">About</a></li>
|
||||
<li><a href="mailto:contact@example.com">Contact Me</a></li>
|
||||
<li><a href="/feed"><img src="/images/feed-icon-14x14.png" width="14" height="14" /> RSS</a></li>
|
||||
<li>
|
||||
<a href="/feed"><img src="/images/feed-icon-14x14.png" width="14" height="14" /></a>
|
||||
<a href="/feed">RSS</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="main">
|
||||
|
|
|
@ -85,16 +85,20 @@ pre {
|
|||
font-family: Titillium, Calibri, Helvetica, "Liberation Sans", "Bitstream Vera Sans", Tahoma, Geneva, Arial, sans-serif;
|
||||
background-color: rgb(112, 128, 144); /* Slate gray */
|
||||
padding: 0.5em 1em;
|
||||
text-shadow: rgb(187, 187, 187) 0px 1px 1px;
|
||||
text-shadow: rgb(187, 187, 187) 1px 1px 1px;
|
||||
font-size: 2.1em;
|
||||
font-weight: bold;
|
||||
/* margin: 1em 1em 0 1em;*/
|
||||
-webkit-border-radius: 0.5em;
|
||||
-moz-border-radius: 0.5em;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
#header a{
|
||||
#header a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
#header a:hover {
|
||||
color: #36454F;
|
||||
/* text-shadow: rgb(0, 187, 0) 1px 1px 1px;*/
|
||||
}
|
||||
|
||||
ul#menu {
|
||||
|
@ -106,7 +110,7 @@ ul#menu {
|
|||
ul#menu li {
|
||||
display: inline;
|
||||
font-size: inherit;
|
||||
text-shadow: rgb(187, 187, 187) 0px 1px 1px;
|
||||
/* text-shadow: rgb(187, 187, 187) 0px 1px 1px;*/
|
||||
/* width: 5em;*/
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue