szurubooru/public_html/css/top-navigation.css

55 lines
808 B
CSS
Raw Normal View History

2014-08-31 23:22:56 +02:00
#top-navigation {
width: 100%;
}
#top-navigation ul {
list-style-type: none;
padding: 0 2em;
margin: 0;
}
#top-navigation li {
display: inline-block;
}
#top-navigation li a {
display: inline-block;
2014-09-16 18:51:36 +02:00
text-transform: lowercase;
2014-09-07 09:57:01 +02:00
font-variant: small-caps;
2014-08-31 23:22:56 +02:00
padding: 0.5em 1em;
2015-01-26 08:50:25 +01:00
font-size: 0.9em;
2014-08-31 23:22:56 +02:00
}
#top-navigation li a:focus,
#top-navigation li a:hover {
outline: 0;
}
#top-navigation li:first-child a {
margin-left: -1em;
}
#top-navigation li:last-child a {
margin-right: -1em;
}
2014-09-16 18:51:36 +02:00
#top-navigation i {
2015-01-26 08:50:25 +01:00
font-size: 3em;
2014-09-16 18:51:36 +02:00
margin: 0 10px 5px;
}
#top-navigation .accesskey:before {
position: absolute;
display: inline-block;
right: 0;
left: 0;
content: '\a0';
border-bottom: 1px solid;
opacity: .35;
height: 90%;
}
#top-navigation .accesskey {
position: relative;
text-decoration: none;
}