blob: f35eea0d16e7590daad72036fdf69191282f699a (
plain) (
tree)
|
|
@import "color_scheme";
#header {
#logo {
background: {
color: $header-bg;
image: image_url("header-metal-bg.jpg");
repeat: no-repeat;
}
border-bottom: 1px solid $fg;
}
#menu {
position: relative;
text-align: center;
top: -2em;
ul {
padding: 0;
li {
list-style: none;
display: inline-block;
background-color: $menu-bg;
padding: {
left: 1em;
right: 1em;
top: 0.3em;
bottom: 0.3em;
}
&.selected {
background-color: $selected-menu-bg;
font-weight: 600;
a {
color: $selected-menu-fg;
}
}
&:hover {
background-color: $hover-menu-bg;
a {
color: $hover-menu-fg;
}
}
a {
text-decoration: none;
color: $menu-fg;
}
}
}
}
}
|